File: /var/www/quadcode-site/src/style/components/welcome.scss
.welcome {
height: 100vh;
width: 100%;
background: radial-gradient(52.59% 52.59% at 50% 47.41%, #3A4253 0%, #0C1013 100%);
position: relative;
&__container {
max-width: 1800px;
height: 100%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
&__content {
z-index: 2;
max-width: 780px;
@include breakpoint-down('deskS') {
max-width: 460px;
}
@include breakpoint-down('tabM') {
max-width: 335px;
}
@include breakpoint-down('mobM') {
width: 90%;
}
}
&__item {
margin-bottom: 16px;
text-align: center;
&:last-of-type {
margin-bottom: 0;
}
}
&__title {
color: $white;
transform: translateY(-30px);
opacity: 0;
span {
color: $red;
}
}
&__text {
color: $white;
transform: translateY(-30px);
opacity: 0;
@include breakpoint-down('deskS') {
font-size: 16px;
}
}
}