/* CSS Document */
@charset "UTF-8";
.clear {
    clear: both;
}

body {
    background-attachment: fixed;
    background-color: #000;
    background-image: url(turquoise.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

a {
    font-family: monospace, sans-serif;
    font-weight: normal;
    text-decoration: none;
}

a:link {
    color: turquoise;
}

a:hover {
    color: pink;
    background: #008080;
    text-decoration: none;
}

a:visited {
    color: purple;
}

#main {
    background-color: rgba(0, 0, 0, 0.75);
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    border: 5px solid #008080;
    border-radius: 50px;
    position: relative;
    font-weight: normal;
}

#nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 25px 20px;
    top: auto;
    font-size: 1.5em;
    color: grey;
    font-family: monospace, sans-serif;
    text-transform: uppercase;
}

#content {
    display: block;
    width: 85%;
    padding: 25px;
    margin: 0px auto;
    overflow: visible;
}

#footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    clear: both;
    width: 100%;
    max-width: 1200px;
}

h1 {
    font-family: monospace, sans-serif;
    font-weight: normal;
    padding: 0;
    color: #FFF;
}

h2 {
    font-family: monospace, sans-serif;
    font-weight: normal;
    font-size: 1em;
    line-height: 1.25;
    color: grey;
}

h3 {
    font-family: monospace, sans-serif;
    font-weight: normal;
    font-size: 1.2em;
    line-height: 1.25;
    color: grey;
}

.pill {
    background: rgba(0, 0, 0, 0.5);
    border: 5px solid #008080;
    border-radius: 50px;
    color: red;
    font-family: monospace, sans-serif;
    font-size: 1em;
    display: inline-block;
    padding: .5em 1em;
    text-align: center;
}

.pill:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: red;
    color: white;
    cursor: crosshair;
}

