section nav {
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.cookie {
    flex: 1;
    background-color: #964f2e;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    height: 320px;
}

.cookie img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.torta {
    flex: 1;
    background-color: #964f2e;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    height: 320px;
}

.torta img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.bolo {
    flex: 1;
    background-color: #964f2e;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    height: 320px;
}

.bolo img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}

.cookie a {
    color: white;
    text-decoration: none;
    font-family: 'bree serif';
    font-size: 0.8cm;
}

.torta a{
    color: white;
    text-decoration: none;
    font-family: 'bree serif';
    font-size: 0.8cm;
}

.bolo a{
    color: white;
    text-decoration: none;
    font-family: 'bree serif';
    font-size: 0.8cm;
}

.bolo:hover {
    transition: 0.4s;
    background-color: #471905;
}

.cookie:hover {
    transition: 0.4s;
    background-color: #471905;
}

.torta:hover {
    transition: 0.4s;
    background-color: #471905;
}