*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    width: 100%;
    height: 500px;
}


.logo{
    width: 100%;
    height: 40px;
    background-color: beige;
    text-align: center;
}
.header{
    width: 100%;
    height: 60px;
    background-color: rgb(151, 151, 76);
    margin-top: 10px;
}
.feature{
    width: 100%;
    height: 200px;
    background-color: rgb(172, 170, 167);
    margin-top: 10px;
}
.boxes{
    width: 100%;
    height: 300px;
    background-color: beige;
    margin-top: 10px;
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-around;
}

.box1{
    width: 30%;
    height: 200px;
    background-color: azure;
    text-align: center;

}
.footer{
    width: 100%;
    height: 40px;
    background-color: rgb(59, 154, 154);

}