
*{
    margin: 0;
    padding: 0;
}

/* Formateo del body encolumnado */
/* body {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
} */

/* Formateo del logo */
.header-logo {
    margin: 30px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo img {
    width: 400px;
    height: auto;
}

/* Formateo de frase */

.text {
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    
}

.text p {
    font-size: 2.5rem;
    text-align: center;
    border: 2px solid black;
    border-radius: 50%;
    padding: 50px;
}


/* Formateo imagen central */
.simpsons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    height: 40vh;
}

.simpsons img {
    /* Modificar acá si la imagen no queda bien */
    width: 600px;
}

/* Formateo del footer */
footer {
    text-align: center;
}