46 lines
579 B
CSS
46 lines
579 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: 3em auto;
|
|
font-size: 110%;
|
|
line-height: normal;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: flex-start;
|
|
min-height: 10em;
|
|
max-width: 90%;
|
|
max-height: 85%;
|
|
}
|
|
|
|
|
|
#fin {
|
|
margin: 6em auto;
|
|
width: 20em;
|
|
display: block;
|
|
text-align: center;
|
|
font-style: italic;
|
|
}
|
|
#fin p:first-of-type {
|
|
font-weight: bold
|
|
}
|
|
|
|
#questions-answers {
|
|
min-width: 50%;
|
|
transition: width 1s;
|
|
}
|