body {
    font-family: 'Univers', sans-serif;
    background-color: #275bb1;
    color: white;
    margin: 0;
    padding: 0;
    font-weight: normal;
}

* {
    box-sizing: border-box;
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
}

strong {
     font-weight: bolder;
}

h1 {
    display: inline-block;
    margin: 0;
    font-family: 'Univers Header', sans-serif;
    font-size: 16px;
}

a {
    color: white;
    text-decoration: underline;
}

ul {
    padding: 0;
    font-size: 16px;
}

ul li {
    list-style: none;
    margin-bottom: 5px;
}

img, .frank-img {
    width: 150px;
    height: 150px;
}

section {
    margin: 2.5rem auto;
    max-width: 800px;
}

.frank-img {
    margin: auto;
    border-radius: 50%;
    border: 4px solid #c0bfbc;
    background: url(assets/frank.jpeg) no-repeat center;
    background-size: 100%;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(assets/overlay.jpg) no-repeat center center fixed;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}