* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    padding: 20px;
    background-color: #ebebed;
    color: #8e8b56;
    font-family: Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    min-height: 100vh;
}
main {
}
p, h1, h2, h3 {
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 22px;
}
p a {
    color: black;
    text-decoration: none;
}
p a:hover {
    text-decoration: underline;
}
.intro {
    font-size: 24px;
    line-height: 30px;
}
img {
    width: 100%;
    display: block;
}
footer img {
    width: 50px;
    
}

@media (min-width: 750px) {
    body {
        padding: 50px;
    }
    p, h1, h2, h3 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }
    .intro {
        font-size: 36px;
        line-height: 40px;
    }
    footer {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    footer p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 0px;
    }
}

@media (min-width: 1000px) {
}

@media (min-width: 1350px) {
    body {
        padding: 80px;
    }
    p, h1, h2, h3 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 40px;
    }
    .intro {
        font-size: 56px;
        line-height: 70px;
        margin-bottom: 70px;
    }
}

@media (min-width: 1650px) {
}

@media (min-width: 2000px) {
}