body {
    display: flex;
    justify-content: center;   /* Horizontal */
    align-items: center;       /* Vertical */
    min-height: 100vh;
    background-color: #00225F;
    overflow: hidden;
}

#wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin: 20px; */
    width: 100%;
}

h1 {
    font-family: forma-djr-deck, sans-serif;
    font-size: 4rem;
    letter-spacing: 1px;
    margin: 0 0 40px;
    color: #fff;
    line-height: 1.2;
    font-weight: 600;
}

p{
    font-family: proxima-nova, sans-serif;
    margin: 0 0 20px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
}

a{
    color: #E68200;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10rem auto;
    max-width: 80%;
}