html, body {
    font-family: Roboto, serif;
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 16px;
    text-align: center;
}

.white-text {
    color: white;
}

.orange-accent {
    color: #ff9900;
}

.animated {
    transition: all 150ms;
}

a {
    text-decoration: none;
    color: #383838;
}

li {
    list-style-type: none;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

p {
    line-height: 1.5;
}

header {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

footer {
     width: 100%;
     height: 80px;
     background: white;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
     z-index: 1;
 }

#logo {
    height: 50px;
    float: left;
    margin: 15px 0 0 20px;
}

#logo:hover {
    opacity: 0.7;
}

#logo img {
    height: 100%;
}

header nav {
    float: right;
    margin: 15px 20px 0 0;
}

header nav ul li {
    float: left;
    margin-right: 20px;
}

header nav ul li:hover {
    font-size: 1.5rem;
}

header nav ul li:hover > * {
    color: #ff9900;
}

section {
    height: 100%;
    width: 100vw;
}

hr.section-hr {
    height: 5px;
    width: 40%;
    border: 0;
    color: #383838;
    background-color: #383838;
}

hr.content-hr {
    color: #ff9900;
    background-color: #ff9900;
    border: 0;
    height: 2px;
    width: 30%;
}
