html, body { 
    background-color: #012238;
}

body {
    font-family: "Roboto";
    min-height: 100vh;
    text-align: center;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
    margin: 0.75rem
}

a, p {
    color: #FFF; 
    font-size: 24px;
    letter-spacing: 1px;
    font-style: normal;
    font-weight: 300;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    /* quick way to make content centering consistent */
    min-height: calc(100vh - 183px);
    padding: 80px
}

.logo {
    max-width: 388px;
    max-height: 162px;
    width: 100%;
    height: 100%;
    margin-top: 10rem;
    flex-shrink: 0;
}

.container {
    margin-top: 80px;
    margin-bottom: 200px;
    display: block;
}

.icon-wrapper { 
    width: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1250px) {
    .logo {
        margin-top: 0;
        max-width: 485px;
        max-height: 202px;
    }

    p {
        font-size: 32px;
    }

    .container {
        margin-bottom: 80px;
        display: block;
    }

    .icon-wrapper > a > img { 
        width: 35px;
    }

    .icon-wrapper { 
        width: 200px;
    }
  }
