
*{
    padding: 0;
}

/* Desktop version */

body{
    overflow-x: hidden;
}

#content{
    background-color: #fafaf7;
}

#header{
    background: white;
    border-bottom: 1px solid #ede5d5;
}

#header>nav{
    width: 50vw;
}

#content-image{
    width:100vw;
    height:80vh;
    background-image: url("media/background.png");
    background-size: cover;
    background-position: center center;
}

#content-card-wrapper{
    height: 75vh;
}

#content-card{
    margin-top: -75vh;
    background: white;
    width: 60vw;
    padding: 50px 30px 50px 30px;
    padding-top: 30px;
    border-radius: 10px;
    border: 1px solid #ede5d5;
    min-height: 70vh;

}

#content-card>h1{
    color:#be1436;
    font-weight: bold;
}

#nav-logo{
    position:relative;
    height:60px;
}

#content-card-video>iframe {
    display:block;
    width:50vw;
    height:28vw;
    border-radius: 10px;
}

.navbar-expand-lg .navbar-collapse{
    flex-direction: row;
    justify-content: flex-end;
}

#shop-link{
    color: white;
    background-color: #b71234;
    border: 3px solid #b71234; 
    font-weight: bold;
}

#after-card-spacer{
    height: 20vh;
    width: 100%;
}

#footer{
    background-color: #212529;
    height: 10vh;
}

#footer>p{
    color:#ddd;
}

.sm-icon{
    width: 50px;
    height: 50px;
    margin: 5px;
}

#socials{
    width: 50vw;
}

/* Mobile version */
@media only screen and (max-width: 1000px) {
    #content-card{
        width: 95vw;
        padding: 20px;
        padding-top: 40px;
        margin-top: -50vh;
        min-height: initial;
        height: fit-content;
        padding-bottom: 40px;
        overflow: hidden;
    }

    #after-card-spacer{
        height: 10vw;
    }

    #nav-logo{
        height:120px;
    }

    #content-card-video>iframe {
        height:48vw;
        width:85vw;
    }

    #content-card>b{
        font-size: 2.3em;
    }

    #content-card>p{
        font-size: 2.1em;
        padding: 30px;
    }

    #content-card>h1{
        font-size: 4.5em;
        padding-bottom: 1em;
    }

    #content-card-wrapper{
        height: fit-content;
    }

    #content-image{
        height: 60vh;
    }

    .navbar-toggler-icon{
        width: 2.5em !important;
        height: 2.5em !important;
    }

    #shop-link{
        margin-top: 25px;
        margin-bottom: 25px;
        font-size: 2em;
    }

    #header>nav{
        width: 90vw;
    }
    
    #socials{
        width: 60vw;
    }

    #socials-icons>a{
        width: 8em;
        margin: 1em;
    }

    
    #socials>h4{
        font-size: 2em;
    }

    #footer{
        height: 150px;
    }

    #footer>p{
        font-size: 1.8em;
    }

}