@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Oswald:wght@300&display=swap');

.box {
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    color: white;
    font-size: 20px;
}

/* Fuentes personalizadas para cada div */
.pink {
    background-color: pink;
    font-family: 'Pacifico', cursive;
}


.blue {
    background-color: blue;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.yellow {
    background-color: yellow;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

