body {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    background-image: url(../media/bg.svg);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: space-between;
    height: 100vh;
    color: white;
    position: relative;
}

* {
    box-sizing: border-box;
}

:root {
    font-size: 14px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    z-index: 4px;
}

img.gear {
    background-size: contain;
    position: absolute;
    top: 20%;
    left: calc(50% - 500px);
    background-size: cover;
    width: 60%;
    height: 80%;
}

.content {
    z-index: 10;
    display: flex;
    align-items: flex-start;
}

.content .side-nav {
    display: flex;
    flex-direction: column;
}

.side-nav p {
    font-weight: 700;
    font-size: 1.2rem;
}

.side-nav a {
    text-decoration: none;
    color: #746EA8;
    margin: 1rem 0;
}

.side-nav a:hover {
    color: white;
}

.spacer {
    width: 50%;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.left p {
    font-weight: 900;
    font-size: 10rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    padding-top: -.5rem;
}

.left span {
    display: flex;
    justify-content: flex-end;
    font-weight: 300;
    line-height: 2rem;
    text-align: right;
}

.left a {
    padding: 1rem;
    background: linear-gradient(321.25deg, #DF387C -33.39%, #FF602C 103.69%);
    box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    width: 10rem;
    display: flex;
    justify-content: flex-end;
    color: white;
    text-decoration: none;
}

footer img {
    margin: 0 .5rem;
}