body {
    background-color: #aaa;
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #ccc;
    margin: 0;
  }

.home {
    font-size: 30px;
    text-align: center;
}

header {
    background-image: url('/assets/geoff.jpg');
    text-align: center;
}

.header-content {
    background-color: rgb(0,0,0, .8);
}

h1 {
    padding-top: 1em;
    padding-bottom: 3em;
    font-size: 70px;
    font-weight: 400;
    text-align: center;
}

h2 {
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
}

.nav{
    background-color: black;
}

.nav-links {
    display: inline-block;
    padding: 1em;
}

.nav-links>div {
    cursor: pointer;
}

.nav>div>a, .nav-links>div {
    text-decoration: none;
    color: white;
}

.nav>div>a:hover {
    text-decoration: underline;
}

.content {
    width: 50%;
    margin: auto;
    padding: 1em;
    background-color: white;
    color: black;
    text-align: center;
    margin-bottom: 4em;
}

a {
    text-decoration: none;
    color: black;
    transition: 0.5s;
}

a:hover, .nav-links>div:hover {
    text-decoration: underline;
}

.links {
    display: flex;
    justify-content: space-around;
}

.portrait {
    width: 30%;
    border-radius: 50%;
}

p {
    text-align: left;
    margin: 1em;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: black;
    margin: 1em;
    padding: 1em;
    text-align: left;
}

.dropdown>li {
    padding: .4em;
    list-style-type: none;
}

.dropdown>li>a {
    color: white;
}

textarea {
    width: 100%;
}

label {
    display: block;
    text-align: left;
}

[type="email"] {
    width: 100%;
}

[type="submit"] {
    transition: 0.5s;
    width: 33%;
    background-color: black;
    border: solid black;
    color: white;
    margin-top: 0.5em;
    padding: 0.5em 0.5em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

[type="submit"]:hover {
    background-color: rgb(0,0,0,0.8);
}

[type="submit"]:active {
    background-color: rgb(4, 11, 77);
}

form {
    width: 75%;
    margin: auto;
    text-align: left;
}

img {
    max-width: 100%;
}

@media only screen and (max-width: 400px) {
    .nav-links {
        display: block;
        padding: 1em;
    }
}

@media only screen and (max-width: 800px) {
    .content {
        width: 90%;
    }
    form {
        width: 100%;
    }

    h1 {
        font-size: 50px;
    }
    .links {
        display: flex;
        flex-wrap: wrap;
    }
}
