w-aura/src/components/pages/WorksForUs/styles.module.css
Денис Катаев 37833a888f Questionnaire
2023-12-31 00:33:55 +00:00

60 lines
985 B
CSS

.page {
position: relative;
height: fit-content;
min-height: 100vh;
display: flex;
justify-content: start;
align-items: center;
flex-direction: column;
gap: 40px;
background: url("/couple_holding_hands_1.webp");
background-position-y: bottom;
background-position-x: center;
background-size: cover;
color: #fff;
padding-top: 64px;
}
.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;
}