@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
    font-family: "Open Sans", sans-serif;
    background: #f5f5f5;
    margin: 0;
    min-height: 100vh;
}

p,
li,
ul,
a {
    font-size: 1.25rem;
}

h1,
h2 {
    font-family: Lora, serif;
}

h1 {
    font-size: 3rem;
}

h2 {
    margin-bottom: 8px;
    margin-top: 24px;
    font-size: 2rem;
}

p {
    margin-top: 12px;
    margin-bottom: 12px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    border-radius: 8px;
}

main {
    padding: 32px;
}

main > h1 {
    margin-top: 0px;
}

footer {
    padding: 40px;
    background-color: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* 768px and less */
@media only screen and (max-width: 768px) {
    main {
        padding: 16px;
    }
}

/* 992px and more */
@media only screen and (min-width: 992px) {
    main {
        padding: 16px 15vw;
    }
}
