@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500&display=swap');

@keyframes fadein {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shorten {
    from {
        opacity: 0;
        height: 20vh;
        width: 50vw;
    }
    
    to {
        opacity: 1;
        height: 2vh;
        width: 32vw;
    }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 1920px;
    width: 100%;
    max-height: 100vh;
    height: 100%;
    font-family: 'Jost', sans-serif;
    margin: 0 auto;
}

header,
nav,
main {
    width: 100%;
    /* display: flex; */
}

section {
    width: 90%;
    display: flex;
}

header {
    
}

nav {
    border-bottom: 2px solid #000;
    border-top: 3px solid #000;
}

nav ul
{
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: 0 auto;
    text-decoration: none;
    list-style: none;
    text-transform: uppercase;
    flex-wrap: wrap;
}

nav ul li
{
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
    scroll-behavior: smooth;
}

.bag {
    width: 32px;
    margin-top: 2px;
}

.nav-logo {
    width: 150px;
    margin-top: 3px;
}

.nav-logo-mobile {
    display: none;
}

a:link {
    color: #000;
    text-decoration: none
}

a:visited {
    color: #000;
}

a:active {
    color: #000;
}

a:hover {
    /* color: #bbb; */
    /* opacity: 0.5;
    transition: all .5s ease-in-out; */
}

main {

}

.add-margin {
    margin: 10px 0px 35px 0px;
}

.buy-button-container {
    padding: 20px;
}

.buy-now-button {
    display: inline-block;
    font-size: 18px;
    line-height: 48px;
    height: 48px;
    color: #ffffff !important;
    min-width: 212px;
    background-color: #000000;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
}

s {
    color: maroon;
}

footer {
    height: 1vh;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    border-top: 2px solid #000;
}

.copyright {

}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
nav ul
{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
    list-style: none;
    text-transform: uppercase;
    flex-wrap: wrap;
    border-top: 2px solid #000;
}

nav ul li
{
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    padding: 8px;
    text-align: center;
    scroll-behavior: smooth;
}

.bag {
    width: 28px;
    margin-top: 2px;
}

.nav-logo {
    display: none;
}

.nav-logo-mobile {
    width: 100px;
    padding-top: 15px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {...}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {...}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {...}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {...}