body {
    font-family: 'Arial Narrow', sans-serif;
    background-image: url("../images/oateyBackground.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}
#logo {
    padding: 2rem;
}
.small_logo {
    margin-left: 20px;
    width: 90%;
}
header .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: rgb(74, 79, 85);
}
header .navigation .menu-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 10%;
    margin: auto 20px auto 0;
}
header .navigation .menu-list li a {
    color: rgb(255, 255, 255);
    font-size: 1.25rem;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}
header .navigation .logo {
    margin-left: 20px;
}  
.container {
    text-align: center;
    width: 381px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f4f4f4;
    padding: 1rem 30px;
    border: 2px solid black;
    border-radius: 8px;
}
#values {
    font-size: 26px;
    color: rgb(181, 183, 185);
    text-align: center;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: .5rem;
}
#byline {
    font-size: 30px;
    color: rgb(74, 79, 85);
    text-align: center;
    font-weight: 700;
    margin-top: 0;
}