html, body{
    padding: 0;
    margin: 0;
    height: 100%;
    
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}



p{
    margin: 0;

}

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

button{
    background-color: transparent;
    border: 0;
}





/* 
    start of nav-menu section styles
*/

.nav-bar{
background-color: #e90076;
display: grid;
align-items: center;
grid-template-columns: repeat(3, 1fr);
padding: .5rem .5rem;
}

.hamburger-button{
    cursor: pointer;
}

.burger-button{
    stroke: #F0EAD6;
    stroke-width: 2;
}

.cart-wrapper{
    text-align: center;
}

.cart-icon{
    color: #F0EAD6;
    width: 50px;
    height: 50px;
}

.logo{
    margin: auto;
    max-width: 100px;
    max-height: 100px;
}


.nav-menu{
    display: grid;
    grid-template-columns: 1fr;
    height: 100%;
    width: 50%;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
    
    z-index: 1;
    animation: slide-in 650ms ease;
  
    
}

@keyframes slide-in{
    0%{
        transform: translateX(-100%);
    }

    100%{
        transform: translateX(0%);
    }
}


.nav-links{
    font-size: 25px;
    padding-left: 1rem;
    color: #e90076;
}

/* 
    end of nav-menu section styles
*/


.img-stylings{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.collection-section{
    background-color: #130630;
    color: #F0EAD6;
    padding: 1rem 1rem;
}


.shop-button{
    display: block;
    width: 100%;
    padding: 1rem 0rem;
    background-color: #F0EAD6;
    color: #e90076;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    transition: 650ms ease;
}

.shop-button:hover{
    background-color: #e90076;
    color: #F0EAD6;
    transition: 650ms ease;
}

/* 
    beginning of product section styles
*/

.product-section{
    background-color: #130630;
    color: #F0EAD6;
    padding: 1.5rem 1.5rem;
}

.product-title{
    font-size: 20px;
    margin-top: 1rem;
}

.product-price{
    font-size: 18px;
    margin-top: 1rem;
}

.product-button{
    display: block;
    text-align: center;
    background-color: #000;
    color: #fff;
    border: 2px #fff solid;
    font-size: 19px;
    font-weight: bold;
    padding: 1rem;
    margin-top: 1rem;
    transition: 650ms ease;
}

.product-button:hover{
    background-color: #fff;
    color: #000;
    border: 2px #000 solid;
    transition: 650ms ease;
}

/* 
    end of product section styles
*/






/* 
    beginning of product-description section styles
*/

.description-section{
    padding: 1rem 1rem;
    background-color: #130630;
    color: #F0EAD6;
}

.general{
    padding: 1rem 0rem;
}

.product-title{
    margin-bottom: 1rem;
    font-size: 36px;
}

.product-price{
    font-size: 24px;
}

.selection{
    padding: 0.5rem 0rem 1rem 0rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}


.selection-button{
    padding: 0.5rem;
    letter-spacing: 1.15px;
    border-radius: 5px;
    border: 1px #F0EAD6 solid;
    font-size: 15px;
    font-weight: bold;

    background: #130630;
    color: #F0EAD6;
}

.selection-button:focus{
    outline: none;
}

.add-button{
    cursor: pointer;
    background-color: #e90076;
    color: #F0EAD6;
 
    font-size: 19px;
    font-weight: bold;
    padding: 1rem;
    margin-top: 1rem;
    transition: 650ms ease;
}

.add-button:hover{
    background-color: #F0EAD6;
    color: #e90076;
  
    transition: 650ms ease;
}


.specifics{
    padding: 1rem 0rem;
    font-size: 18px;
    letter-spacing: .75px;
    display: grid;
    row-gap: 0.75rem;
}



/* 
    end of product-description section styles
*/

