*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f2eee8;
}

.container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;

    background-color: #9dad71;
    border: 2px solid #4e0a0b; 
    border-radius: 5px;
    width: 600px;
    height: 500px;
}

.box{
    width: 45%;
    height: 100px;
    background-color: #e38792; 
    border: 2px solid #4e0a0b;
    border-radius: 5px;
}

/* Estilos header */

header{
    background-color: azure;
    display: flex;
    padding: 20px;
    justify-content: space-between;
}

main{
    display: flex;
    gap: 20px;
}
.main-content{
    width: 70%;
    height: 300px;
    background-color: #9dad71;
}
.statistics{
    width: 30%;
    height: 300px;
    background-color: #e38792;
}