*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

body, html{
    height: 100%;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

h1{
    text-align:center;
    font-size: 4rem;
}

section{
    background-color: lightblue;
    border: 3px solid darkslateblue;
    padding:3rem;
    width: 70%;
}

section div{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

img{
    width: 25%;
    transition: 1s ease;
}

img:hover{
    transform: scale(1.1) rotate(720deg);
}

@media (max-width: 750px){
    section{
        display: flex;
        height: 50%;
        width: 90%;
        justify-content: center;
        align-items: center;
    }

    h1{
        font-size:xx-large;
    }

    section div{
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    img{
        width: 40%;
    }
}