* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    background: #68b7f7;
    font-family: 'Amatic SC', cursive;
    font-weight: 700;
    color: white;
    padding: 50px 30px;
}

h1 {
    text-align: center;
    font-size: 4.5rem;
}

main {
    padding: 50px 0;
}

.item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item span {
    font-size: 2.5rem;
}

.item img {
    margin-top: 20px;
    width: 70px;
    height: auto;
}

hr {
    border: none;
    background: white;
    height: 2px;
    width: 200px;
    margin: 70px auto;
}

footer {
    margin-top: 50px;
    text-align: center;
}

footer h2 {
    font-size: 3rem;
}

footer p {
    font-size: 1.6rem;
    margin-top: 20px;
}

@media (min-width: 720px) {
    h1 {
        font-size: 6.5rem;
    }

    .item span {
        font-size: 3rem;
    }

    .item img {
        width: 100px;
    }

    footer h2 {
        font-size: 4.375rem;
    }
    
    footer p {
        font-size: 2rem;
    }
}