body {
    background: #171E28;
    padding:0;
    margin:0;
    font-size:22px;
    font-family: 'SF Pro Text';
    -webkit-font-smoothing: antialiased;
}
.landing {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width:100%;
    height:100vh;
    text-align: center;
    position: relative;
}
.landing .landing-inner {
    width:700px;
}
.landing .landing-inner img {
    max-width:220px;
    margin-bottom: 1.5em;
}
.landing .landing-inner p {
    opacity: 0.7;
}
.landing .copyright {
    position: absolute;
    bottom: 1.5em;
    opacity: 0.32;
    font-size:18px;
}

@media only screen and (max-width: 720px) {
    .landing .landing-inner {
        width: calc(100% - 50px);
    }
    .landing .landing-inner img {
        max-width:100%;
    }
}

@media only screen and (max-width: 320px) {
    .landing .landing-inner img {
        margin-bottom: .5em;
    }
    body {
        font-size:18px;
    }

    .landing .copyright {
        font-size:16px;
    }
}

@media only screen and (max-width: 1023px)  and (orientation: landscape){

    .landing .landing-inner img {
        margin-bottom: .5em;
    }
    .landing {
        height:500px;
    }
}

.links {
    display:flex;
    align-items: center;
    justify-content: center;
}
.links a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 .5em;
    font-size:16px;
}
