61 lines
1004 B
CSS
Executable File
61 lines
1004 B
CSS
Executable File
.page {
|
|
position: relative;
|
|
height: fit-content;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: start;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
gap: 40px;
|
|
background: url("/girl_talking.webp");
|
|
background-position-y: bottom;
|
|
background-position-x: center;
|
|
background-size: cover;
|
|
color: #fff;
|
|
padding-top: 64px;
|
|
background-color: #171717;
|
|
}
|
|
|
|
.title {
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
max-width: 322px;
|
|
}
|
|
|
|
.text {
|
|
font-size: 14px;
|
|
text-align: center;
|
|
line-height: 140%;
|
|
max-width: 322px;
|
|
}
|
|
|
|
.blue {
|
|
font-weight: bolder;
|
|
color: #56ccf2;
|
|
}
|
|
|
|
.buttons-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.button {
|
|
width: 160px;
|
|
min-width: fit-content;
|
|
height: 48px;
|
|
min-height: fit-content;
|
|
border: solid 1px #fff;
|
|
border-radius: 16px;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.next-button {
|
|
background-color: #fff;
|
|
color: #6a3aa2;
|
|
}
|