77 lines
1.2 KiB
CSS
Executable File
77 lines
1.2 KiB
CSS
Executable File
.page {
|
|
position: relative;
|
|
height: fit-content;
|
|
min-height: calc(100vh - 50px);
|
|
min-height: calc(100dvh - 50px);
|
|
display: flex;
|
|
justify-content: start;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
padding-top: 16px;
|
|
color: #333333;
|
|
}
|
|
|
|
.title {
|
|
margin: 0;
|
|
text-align: left;
|
|
font-size: 24px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.description {
|
|
margin: 0;
|
|
text-align: left;
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.purple {
|
|
color: #6a3aa2;
|
|
}
|
|
|
|
.eye-image {
|
|
width: 100%;
|
|
max-width: 180px;
|
|
min-height: 180px;
|
|
}
|
|
|
|
.top-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 30px;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
.bottom-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 16px;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
.text-link {
|
|
color: #828282;
|
|
text-align: center;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.button {
|
|
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%
|
|
);
|
|
min-height: 0;
|
|
height: 50px;
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
}
|