37 lines
659 B
CSS
Executable File
37 lines
659 B
CSS
Executable File
.page {
|
|
position: relative;
|
|
height: fit-content;
|
|
min-height: calc(100vh - 50px);
|
|
display: flex;
|
|
justify-content: start;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
background-position-y: bottom;
|
|
background-position-x: center;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
color: #fff;
|
|
padding-bottom: 64px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 24px;
|
|
line-height: 28px;
|
|
align-self: flex-start;
|
|
margin-bottom: 30px;
|
|
text-align: left;
|
|
color: rgb(51, 51, 51);
|
|
}
|
|
|
|
.answers-container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.answer-container {
|
|
justify-content: center;
|
|
}
|