body {
    width: 100%;
}

header {
    position: fixed;
    background-color: black;
    top: 0;
    height: 9vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

header img {
    height: 8vh;
    width: auto;
    margin-left: 2.5vw;
}

header img:hover {
    cursor: pointer;
}

header nav {
    margin-right: 2.5vw;
}

header nav span {
    margin-left: 1.5vw;
}

#productContainer {
    background-color: white;
    min-height: 85vh;
    width: 100%;
    margin-top: 3vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.productElement {
    width: 90vw;
    min-height: 90vw;
    margin: 2.5vw 2.5vw 0vw 2.5vw;
}

.productElement img {
    max-width: 100%;
    max-height: 100%;
}

.prodDescContainer {
    background-color: white;
    line-height: 1.5;
}

.prodDescTitle {
    font-family: 'Inter', sans-serif;
    color: black;
    font-weight: 400;
}

.prodPrice {
    font-family: 'Inter', sans-serif;
    color: rgb(26, 25, 25);
    font-weight: 300;
    display: inline-block;
}

.prodDescDisPrice {
    font-family: 'Inter', sans-serif;
    color: rgb(26, 25, 25);
    font-weight: 300;
    display: inline;
}

.disPercentage {
    position: relative;
    text-align: right;
    padding-right: 5px;
    top: -5px;
    font-family: 'Inter', sans-serif;
    color: black;
    font-weight: 400;
}

.material-symbols-outlined {
    color: white;
    font-size: 5vh;
    font-variation-settings:
    'FILL' 0,
    'wght' 200,
    'GRAD' 0,
    'opsz' 48
}

footer {
    width: 100%;
    height: calc(fit-content);
    background-color: #f3f3f3;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 20px
}

.footerElement  {
    width: 30%;
    /* background-color: green; */
    padding: 5vh 0 0 3vw;
    
} 

.footerElement a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: rgb(34, 34, 34);
    text-decoration: none;
    /* line-height: 1.5rem; */
    text-decoration: underline;
}



footer h2 {
    color: black;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    font-weight: bold;

}
footer h2, footer li {
    margin: 20px auto;
}

footer:last-child .footerElement:last-child {
    color: red;
    text-decoration: none   ;
}
#shopMobileSymbol {
    color: black;
    font-size: 6rem;
    vertical-align: sub;
    position: relative;
    font-variation-settings:
    'FILL' 0,
    'wght' 200,
    'GRAD' 0,
    'opsz' 48
}

#desktopNav {
    display: none;
}

#displayImg {
    width: 100%;
    height: auto;
}

#quoteContainer {
    position: relative;
    top: -100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.713);
    width: 60%;
    margin: 0 auto;
    font-size: 1.5rem;
    font-family: 'DM Serif Display', serif;
    padding: 5%;
    line-height: 1.25;
}

#ddm-mobile{
    position: fixed;
    top: -100vh;
    width: 100%;
    display: block;
    height: 100vh;
    background-color: white;
    z-index: 3;
    padding-left: 10vw;
    padding-top: 2vh;
}

.categoryMob {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    padding-top: 3vh;
    color: black;
}

.categoryLinksMob {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    padding-top: 1.5vh;
    padding-left: 3vw;
    color: black;
}

#ddmShopTagMobile {
    display: none;
} 

#ddm-desktop {
    display: none;
}

.categoryMob:hover {
    display: block;
}


@keyframes flyIn {
    0% {top: -100vh;}
    100% {top: 9vh;}
}

@keyframes flyOut {
    0% {top: 9vh;}
    100% {top: -100vh;}
}

@keyframes fadeIn {
    0% {opacity: 0%;}
    100% {opacity: 100%;}
}

@keyframes fadeOut {
    0% {opacity: 100%;}
    100% {opacity: 0%;}
}

@keyframes shrinkHeader {
    0% {height: 13vh;}
    100% {height: 8vh;}
}

@keyframes shrinkHeaderImg {
    0% {height: 12vh;}
    100% {height: 7vh;}
}

@keyframes increaseHeader {
    0% {height: 8vh;}
    100% {height: 13vh;}
}

@keyframes increaseHeaderImg {
    0% {height: 7vh;}
    100% {height: 12vh;}
}

@keyframes moveNavUp {
    0% {top: 13vh;}
    100% {top: 8vh;}
}

@keyframes moveNavDown {
    0% {top: 8vh;}
    100% {top: 13vh;}
}

@media only screen and (max-width: 330px) {
    header {
        height: 7vh;
    }

    #quoteContainer {
        font-size: 1rem;
    }

    header img {
        height: 6vh;
        width: auto;
    }

    @keyframes flyIn {
        0% {top: -100vh;}
        100% {top: 7vh;}
    }
    
    @keyframes flyOut {
        0% {top: 7vh;}
        100% {top: -100vh;}
    }
}

@media only screen and (min-width: 500px) {
    header {    
        height: 11vh;
    }

    #quoteContainer {
        font-size: 2rem;
    }

    header img {
        height: 10vh;
        width: auto;
    }

    .productElement {
        width: 40vw;
        min-height: 40vw;
    }  

    #ddm-desktop {
        display: none;
    }

    @keyframes flyIn {
        0% {top: -100vh;}
        100% {top: 11vh;}
    }
    
    @keyframes flyOut {
        0% {top: 11vh;}
        100% {top: -100vh;}
    }
}

@media only screen and (min-width: 768px) {
    header {
        height: 13vh;
    }

    header img {
        height: 12vh;
        width: auto;
    }
    
    .productElement {
        width: 25vw;
        min-height: 25vw;
    }
   
    #menuIcon {
        display: none;
    }

    #productContainer {
        margin-top: 0;
    }

    #desktopNav {
        position: fixed;
        top: 13vh;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 11vh;
        background-color: white;
        z-index: 3;
    }

    #desktopNav * {
        margin: 0 3vw;
        color: black;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 1rem;
        transition-duration: 0.25s;  
    }

    #desktopNav *:hover {
        color: rgb(99, 99, 99);
        cursor: pointer;
    }

    #quoteContainer {
        font-size: 3rem;
        text-align: center;
    }

    #ddm-desktop {
        position: fixed;
        display: none;
        grid-template-columns: 33.33% 33.33% 33.33%;
        top: 24vh;
        width: 100%;
        /* height: 60vh; */
        background-color: white;
        z-index: 3;
    }

    #ddm-desktop div {
        padding-left: 10%;
    }

    #ddm-desktop div h2 {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        padding-top: 3vh;
    }

    .categoryLinks {
        display: block;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 1rem;
        padding-top: 3vh;
        color: black;
    }

    .categoryLinks:last-child {
        padding-bottom: 12vh;
    }

    .categoryLinks:hover {
        color: rgb(99, 99, 99);
        cursor: pointer;
    }
}

@media only screen and (min-width: 1000px) {
    .productElement {
        width: 18vw;
        height: 18vw;
    }
}

@media only screen and (min-width: 1400px) {
    #quoteContainer {
        font-size: 4rem;
        text-align: center;
    }
}

/* Cookies */
#cookieMain {
    position: sticky;
    bottom: 20px;
    width: 80%;
    margin: auto;
    border: black 1px solid;
    background-color: white;
    display: flex;
    flex-direction: row;
    padding: 20px;

}
#txtDiv {
    width: 80%;
}
#butDiv {
    width: 20%;
    display: flex;
}

#cookieh1 {
    font-size: 35px;
}
#cookiep {
    font-size: larger;
}
#cookieBut {
    font-size: 20px;
    justify-content: center;
    margin: auto;

}
a {
    color: blue;
}