44 lines
785 B
SCSS
44 lines
785 B
SCSS
@use "../base/mixin" as *;
|
|
|
|
// Intro
|
|
.intro {
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
background: #0d0d0d;
|
|
}
|
|
|
|
.intro__bg {
|
|
position: absolute;
|
|
inset: 0;
|
|
background: url("../../images/unsplash_-cKXtsJWU-I.png") center / cover no-repeat;
|
|
// opacity: 0.2;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.intro__content {
|
|
position: relative;
|
|
text-align: center;
|
|
z-index: 1;
|
|
}
|
|
|
|
.intro__sub {
|
|
font-size: clamp(24px, 2.6vw, 50px);
|
|
font-weight: 100;
|
|
letter-spacing: 0.02em;
|
|
color: #ffffff;
|
|
margin-bottom: clamp(16px, 2vw, 32px);
|
|
line-height: 0.8;
|
|
}
|
|
|
|
.intro__title {
|
|
font-size: clamp(42px, 5.2vw, 100px);
|
|
font-weight: 700;
|
|
letter-spacing: 0.01em;
|
|
text-transform: uppercase;
|
|
color: #ffffff;
|
|
line-height: 0.8;
|
|
}
|