body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(225, 225, 225);
}

#container {
    margin: auto;
    width: 80%;
    background-color: rgb(255, 255, 255);
    padding: 25px;
}

header img {
    height: 50px;
    float: right;
    padding-left: 25px;
}
h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 10px;
}

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

main {
    margin-top: 75px;
}

ul {
    padding-left: 25px;
}

ul li {
    list-style: disc;
    line-height: 150%;
}

@media screen and (min-width: 800px) {
    #container {
        width: 800px;
    }

    header img {
        height: 100px;
    }
}