59 lines
1020 B
CSS
59 lines
1020 B
CSS
.page {
|
|
position: relative;
|
|
height: fit-content;
|
|
min-height: 100dvh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
color: #fff;
|
|
padding-bottom: 64px;
|
|
background-color: #fff0f0;
|
|
}
|
|
|
|
.party-popper {
|
|
width: 32px;
|
|
}
|
|
|
|
.title {
|
|
margin-top: 11px;
|
|
font-size: 24px;
|
|
line-height: 33px;
|
|
text-align: center;
|
|
background: linear-gradient(
|
|
165.54deg,
|
|
rgb(20, 19, 51) -33.39%,
|
|
rgb(32, 34, 97) 15.89%,
|
|
rgb(84, 60, 151) 55.84%,
|
|
rgb(105, 57, 162) 74.96%
|
|
)
|
|
text;
|
|
-webkit-text-fill-color: transparent;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.button {
|
|
margin-top: 32px;
|
|
border-radius: 30px;
|
|
min-height: 0;
|
|
height: 50px;
|
|
font-size: 20px;
|
|
font-weight: normal;
|
|
line-height: 22px;
|
|
width: 100%;
|
|
min-width: 0;
|
|
max-width: 360px;
|
|
background: #27ae60;
|
|
color: #fbfbff;
|
|
}
|
|
|
|
.policy {
|
|
color: rgb(51, 51, 51);
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
margin-top: 28px;
|
|
padding-bottom: 10px;
|
|
max-width: 400px;
|
|
}
|