body {
    margin: 0px;
    background-color: aliceblue;
    font-family: "Nerko One", cursive;
}

button{
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    padding: 10px 25px;
}



.page_nav {
    background-color: rgb(129, 180, 180);
    border: 1px solid black;
    position: relative;
}

.page_nav h1 {
    margin: 20px;
}

.button-checkout{
    background-color: white;
    color: black;
    border: 2px solid #77c1a6; /* Green */
  
    right: 15px;
    bottom:  15px;
    position: absolute;
    transition-duration: 0.4s;

}

.button-checkout:hover{
    background-color: #16a1e7;
    color: white;
}


.page-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    
}
.product-container{
    border-radius: 20px;
    margin: 10px;
    padding: 2px 16px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    background-color: white;
}
.product-container:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }

.product-container img {
    width: 300px;
}

.product-container h1{
    margin-bottom: 10px;
    margin-left: 15px;

}
.product-container h3{
    text-align: center;

}



.button-add{
  
    

    background-color: white;
    color: black;
    border: 2px solid #77c1a6; /* Green */
  
    right: 15px;
    bottom:  10px;
    position: absolute;
    transition-duration: 0.4s;
}

.button-add:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
 
  }


.button-add.disabled {
  
    

    background-color: rgb(255, 4, 4);
    color: rgb(0, 0, 0);
    border: 2px solid #000000; /* Green */
  
    right: 15px;
    bottom:  10px;
    position: absolute;
    transition-duration: 0.4s;
}

.button-add.disabled:hover {
    background-color: rgb(234, 234, 234);
    color: rgb(0, 0, 0);
 
  }


