
.splash-wrapper{
    height: 100vh;
    margin-bottom: 3rem;
}

img.splash{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.splash-overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--background-color-transparent);
}

div.splash-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

h1.splash-title{
    font-size: 5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

header nav{
    display: flex;
    align-items: center;
    position: absolute;
    top: 1rem;
    left:0;
}

@media screen and (max-width: 600px){
    h1.splash-title{
        font-size: 3rem;
    }
    div.splash-content{
        bottom: 1rem;
        top: unset;
        transform: translate(-50%, 1rem);
        margin-bottom: 1rem;
    }
}
