body{
    margin-left: 0;
    margin-right: 0;
    font-family: 'Raleway', sans-serif; 
    width: 100%;
}
.content{
    padding-left: 50px;
    padding-right: 50px;
}
.header{
    display: flex;
    height: 100px;
    
    background-color: #2C5F2D;
    color: #FFFFFF;
    
    align-items: center;
    
}

.header .header-content {
    flex-grow: 1; 
    text-align: center; 
}

.logo{
    display: flex;
    float: left;
    align-items: flex-end;
    width: 140px;
    height: 140px;
}   

.footer{
    height: 100px;
    background-color: #2C5F2D;
    display: flex;
    align-items: flex-end;
}

.shoppingBag{
    display: flex;
    float: right;
    align-items: flex-start;
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

.buyButtons{
    background-color: #2C5F2D;
}

.contents{
    background-color: #F5F5DC;

}

.productImage{
    display: flex;
    width: 100%;
    

}

.buySection{
    background-color: #F5F5DC;
    margin-top: 30px;
    display: flex;
    
}

.textBuySection{
    display: flex;    
    text-align: center; 
    margin-bottom: 80px;
    margin-left: 225px;
    width: 50%;
}



hr{
    margin-top: 40px;
    margin-bottom:40px;
    height: 50%;
}


.button {
    background-color: #2C5F2D; 
    margin-top: 10px;
    color: #FFFFFF;
    border: none;
    border-radius: 35px;
    padding: 10px 20px; 
    font-size: 26px; 
    cursor: pointer; 
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-left: 220px;
}

.button:hover {
    background-color: #3D7A4D; /* Change color on hover */
    transform: scale(1.1); 
}

#testDIV{
    width: 50%; 
}

.infoPart{
    background-color: #F5F5DC;
    padding:20px;
    padding-top: 1px;
}
#infoSite{
    font-size: 18px;
    font-style: italic;
}