65 lines
932 B
CSS
65 lines
932 B
CSS
.page {
|
|
background-color: #171717;
|
|
height: fit-content;
|
|
min-height: 100dvh;
|
|
color: #fff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.title {
|
|
margin-top: 58px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.buttons-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-top: 32px;
|
|
}
|
|
|
|
.button {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
width: 160px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.back-button {
|
|
background-color: transparent;
|
|
border: 2px solid #fff;
|
|
}
|
|
|
|
.next-button {
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
|
|
.bottom-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
margin-bottom: 170px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.description {
|
|
line-height: 140%;
|
|
}
|
|
|
|
.background-video {
|
|
position: fixed;
|
|
height: 100%;
|
|
width: 100%;
|
|
float: left;
|
|
top: 0;
|
|
padding: 0;
|
|
object-fit: cover;
|
|
}
|