body {
        font-family: "Roboto", 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-weight: 400;
        font-style: normal;
        margin: 0;
        padding: 0;
}

header {
    background-color: #868eb5;
    padding: 30px;
    height: 100px;
    color: white; 

    font-size: 36px; /* add these three new lines */
    font-weight: 900;
    font-style: normal;
}

#logo {
    width: 70px;
    height: auto;
}

header span {
    position: relative;
    top: -21px;
}

nav ul {
    list-style-type: none;
}


nav ul li {
    display: inline;
    margin-right: 16px;
}

a {text-decoration: none;}

main {
    margin-left: 36px;
    }


h1 {
        font-family: "Roboto", 'Helvetica Neue', Helvetica, Arial, sans-serif;
        font-weight: 900;
        font-style: normal;
}

section {
    display: flex;  /* this is called a flexbox */
}

footer {
    background-color: #868eb5;
    padding: 30px;
    height: 100px;
    color: white;
}

footer p {text-align: center;}