html, body{
    height: 100%;
}

.graphics{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.box{
    width: 100%;
    height: 200px;
    border: 3px solid var(--color-yellow);
    background-color: var(--color-yellow-20);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.box.big{
    grid-column: span 2;
    grid-row: span 2;
    height: 400px;
}

.box em{
    font-size: 3rem;
    font-weight: 700;
    font-style: normal;
}
.box > div{
    height: 100%;
}