/* 
Versatile grey: #C2B6AA
Gunatlet grey: #78736C

*/
* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
.homenav {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    background-color: #78736C;
    padding: 25px;
    border-bottom: solid black 1px;
}
.homenav a {
    text-decoration: none;
    color: white;
    font-size: 25px;
}
.body {
    background-color: #C2B6AA;
    text-align: center;
    padding: 25px;
    font-size: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 25px;
}
.bodyimg {
    flex: 1 1 1;
    
}
.bodydescription {
    gap: 100px;
    flex: 1 1 1;
}
.body img {
    border-radius: 25px;
    max-width: 100%;
    height: auto;
    box-shadow: 6px 6px 6px #78736C ; 
}
