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

html{
    background: grey;
    font-size:16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    --main-text-colour:black;
    --club-red:rgb(232, 49, 49);
    --header-white: whitesmoke;
    scroll-padding-top: var(--scroll-padding, 10vh);
    scroll-behavior: smooth;
}

body{
    width:100%;
    height:fit-content;
    background-color: rgba(180, 213, 255, 0.199);
}
/*---------------------------Navbar-------------------------------------------------*/
main{
    background-color: rgb(209, 228, 209);
    height: 100%;
    width: 100%;
}

#currency-selection{
    display: flex;
    width:165px;
}

.flag-button{
    width: 50px;
    height: 30px;
    position: relative;
    z-index: 3;
}

.flag-button img{
    display: block;
    width: inherit;
    height: inherit;

}

.flag-cover{
    width: inherit;
    height: inherit;
    position: absolute;

    left:0;
    top:0;
    background-color: rgba(78, 77, 90, 0.753);
    
}

.flag-button:hover{
    cursor: pointer;
}

#products-container{
    margin: 4% auto;
    padding-bottom: 300px;
    width:80%;
    display: grid;
    grid-gap:20px;
    grid-template-columns: 1fr 1fr 1fr 1fr;

    text-align: center;
}
.product{
    margin-top: 10%;
    outline: solid 0px red;
    color:rgb(0, 0, 0);
    position: relative;

    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}
.product:hover{
    color: black;

}
.product img{
    margin:auto;
    display: block;
    width:90%;

    outline:0px solid black;
}

.product p{
    width:80%;
}
.product-name{
    padding:5% 0 0 5%;
    font-size: 1.2em;
}
.product-description{
    color: rgb(0, 0, 0);
    position: absolute;
    visibility: hidden;
    height: 100%;
    font-size: 1.5em;
    width:95%;
    left:10%;
    margin:0;
    top:30%;
    text-align: center;
    margin-top:8px;
    font-family: monospace;
    z-index: 1;
}
.product-price{
    padding-left: 5.7%;
    margin-top:0.2em;

    font-size:1.2em;
    color: rgba(0, 0, 0, 0.685);
}



#t-shirt{
    border: 0px solid black;
}

#shirt-container{
    /* overflow: hidden; */
    /* height: 800%; */
    border: 0px solid red;
    margin: auto;
    width:90%;
    height: 85%;
    scale:2.5;
    transform: translate(0,-20%);
    z-index: 1;
}

model-viewer{
    margin: auto;
    height: inherit;
    width: inherit;
}



@media screen and (max-width: 500px) {
    #products-container{
        grid-template-columns: 1fr;
    }
    .product-description{
        font-size: 1.8em;
        top:25%;
    }

        

  }

  @media screen and (min-width: 501px) and (max-width: 1000px) {
    #products-container{
        grid-template-columns: 1fr 1fr;
    }
    .product-description{
        top:30%;
        font-size: 1.5em}    

  }