54 lines
963 B
CSS
54 lines
963 B
CSS
|
#welcome {
|
||
|
margin-top: var(--nav-height);
|
||
|
padding: 0;
|
||
|
background: url("/media/images/welcome-background-1080p.jpg") center;
|
||
|
background-size: cover;
|
||
|
height: calc(100vh - var(--nav-height));
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#welcome-logo {
|
||
|
height: 15rem;
|
||
|
width: 15rem;
|
||
|
}
|
||
|
|
||
|
#welcome h1 {
|
||
|
margin-right: 20%;
|
||
|
padding: 2rem;
|
||
|
}
|
||
|
|
||
|
#welcome h4 {
|
||
|
margin: 0 0 0 20%;
|
||
|
}
|
||
|
|
||
|
#scroll-down {
|
||
|
position: absolute;
|
||
|
bottom: 2rem;
|
||
|
width: 3rem;
|
||
|
height: 2rem;
|
||
|
}
|
||
|
|
||
|
#scroll-down img {
|
||
|
width: 3rem;
|
||
|
}
|
||
|
|
||
|
@media only screen and (max-width: 1280px) {
|
||
|
#welcome .container {
|
||
|
background: url("/media/images/welcome-background-720p.jpg") center;
|
||
|
}
|
||
|
#welcome h4 {
|
||
|
margin: 2rem;
|
||
|
}
|
||
|
#welcome h1 {
|
||
|
margin: 0;
|
||
|
}
|
||
|
}
|
||
|
@media only screen and (max-width: 500px) {
|
||
|
#welcome .container {
|
||
|
background: url("/media/images/welcome-background-mobile.jpg") center;
|
||
|
}
|
||
|
}
|