59 lines
736 B
CSS
59 lines
736 B
CSS
p {
|
|
color: #333;
|
|
}
|
|
|
|
#sim section {
|
|
padding: 2em;
|
|
}
|
|
|
|
#sim > h1 {
|
|
color: #333350;
|
|
margin-top: 3%;
|
|
text-align: center;
|
|
font-size: 350%;
|
|
font-weight: 800;
|
|
}
|
|
|
|
|
|
#conversation {
|
|
margin: 1em auto;
|
|
font-size: 110%;
|
|
line-height: normal;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: flex-start;
|
|
min-height: 10em;
|
|
max-width: 90%;
|
|
}
|
|
|
|
|
|
#fin {
|
|
margin: 6em auto;
|
|
width: 20em;
|
|
display: block;
|
|
text-align: center;
|
|
font-style: italic;
|
|
}
|
|
|
|
|
|
#questions-answers {
|
|
min-width: 60%;
|
|
transition: width 1s;
|
|
}
|
|
|
|
|
|
|
|
#sim #results {
|
|
padding: .1em;
|
|
background: #333350;
|
|
box-shadow: 1px -7px 20px 2px #ccc;
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
font-size: 80%;
|
|
color: white;
|
|
height: 12em;
|
|
text-align: center;
|
|
}
|