42 lines
681 B
CSS
Executable File
42 lines
681 B
CSS
Executable File
.video_hero{
|
|
@apply bg-primary;
|
|
height: 100vh;
|
|
min-height: 650px;
|
|
position: relative;
|
|
|
|
video{
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
position: absolute;
|
|
}
|
|
.hero_content{
|
|
opacity: 0.9999;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
|
|
h1 {
|
|
font-family: "Causten";
|
|
font-weight: 700;
|
|
font-size: 50px;
|
|
line-height: 50px;
|
|
max-width: 700px;
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
p{
|
|
@apply max-w-md;
|
|
padding: 40px 0;
|
|
text-align:center;
|
|
}
|
|
a{
|
|
border: 1px solid white;
|
|
padding: 10px 40px;
|
|
border-radius: 28px;
|
|
}
|
|
}
|
|
|
|
} |