2022-04-05 05:09:51 +02:00
|
|
|
@import 'mixins';
|
2022-04-05 05:08:50 +02:00
|
|
|
@import 'typographies';
|
|
|
|
|
|
|
|
.application {
|
2022-04-05 05:09:51 +02:00
|
|
|
@include display-flex(center, center, column);
|
2022-04-05 05:08:50 +02:00
|
|
|
|
2022-04-05 05:09:51 +02:00
|
|
|
min-height: 100vh;
|
|
|
|
max-width: 100vw;
|
2022-04-18 20:17:43 +02:00
|
|
|
background: url('/images/Background.jpg') no-repeat;
|
|
|
|
background-size: cover;
|
2022-04-05 05:09:51 +02:00
|
|
|
|
2022-04-13 02:18:09 +02:00
|
|
|
.title {
|
|
|
|
@extend %typo-title;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
@extend %typo-subtitle;
|
|
|
|
}
|
|
|
|
|
|
|
|
:where(.title, .subtitle) {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.redirect-link {
|
|
|
|
@include display-flex(center, center, row);
|
|
|
|
@extend %typo-button;
|
|
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
color: hsla(0deg 0% 0% / 100%);
|
|
|
|
background: hsla(0deg 100% 100% / 100%);
|
|
|
|
border-radius: 8px;
|
|
|
|
margin-top: 30px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: hsla(0deg 100% 100% / 100%);
|
|
|
|
background: hsla(0deg 0% 0% / 100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.video {
|
|
|
|
position: fixed;
|
2022-04-13 02:33:26 +02:00
|
|
|
min-height: 200vh;
|
|
|
|
min-width: 100vw;
|
2022-04-13 02:18:09 +02:00
|
|
|
z-index: -100;
|
2022-04-05 05:09:51 +02:00
|
|
|
}
|
2022-04-05 05:08:50 +02:00
|
|
|
}
|