:root {
    --light-primary: #6FFFE9;
    --dark-primary: #5BC0BE;
    --light-secondary: #3A506B;
    --middle-secondary: #1C2541;
    --dark-secondary: #0B132B;
    --light: #FFFDF7;
    --dark: #080E21;
    --padding-small: .75em;
    --padding-medium: 1.5em;
    --padding-large: 3em;
}
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin: 0;
    color: var(--dark-secondary);
}
h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    margin: 0;
    color: var(--light-secondary);
}
p , a:link {
    font-family: 'Nunito', sans-serif;
    font-size: 1em;
    font-weight: 400;
    color: var(--light);
    text-decoration: none;
    font-style: normal;
}
html , body {
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
body {
    background-color: var(--light);
    display: flex;
    flex-direction: column;
    height: 100vh;
}
img {
    width: 200px;
    height: 200px;
    margin: 10px 20px;
}
main {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}
.title {
    text-align: center;
    margin-top: 5%;
}
.blurb {
    position: absolute;
    width: 80vw;
    max-width: 500px;
    display: block;
    background-color: var(--light-secondary);
    padding: var(--padding-small) var(--padding-medium);
    border-radius: 15px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    top: 20%;
    z-index: 1;
}
.block {
    position: relative;
    display: flex;
    justify-content: center;
    width: 150%;
    min-width: 800px;
    border-radius: 50%;
    height: 40vh;
    background-color: var(--dark-secondary);
}
.block::after {
    content: ' ';
    display: block;
    background-color: var(--dark-secondary);
    position: relative;
    top: 50%;
    width: 100%;
    height: 50%;
}
footer {
    width: 100%;
    height: auto;
    padding: var(--padding-medium);
    display: block;
    background-color: var(--dark);
    box-sizing: border-box;
    z-index: 10;
}
address {
    display: flex;
    flex-direction: column;
    color: var(--light);
}