@import url('https://fonts.googleapis.com/css?family=Merriweather+Sans:400,700&subset=latin-ext');

* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Merriweather Sans', sans-serif;
    background-color: #000000;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    min-width: 320px;
}

body {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

p {
    font-size: 16px;
    letter-spacing: 0.2;
}

a {
    text-decoration: none;
}

a:hover, a:active, a:focus {
    text-decoration: underline;
}

.content {
    max-width: 614px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.content .home-logo {
    display: block;
    max-width: 574px;
    width: 100%;
    margin-bottom: 80px;
}

.home-info p:nth-child(1) {
    margin-bottom: 15px;
}

.home-info p span {
    display: inline-block;
    margin-right: 30px;
}

.home-info p span:last-child {
    margin-right: 0;
}

.home-info p:nth-child(2) span:nth-child(1) {
    margin-right: 19px;
}

.home-info p:nth-child(2) span:nth-child(2) {
    margin-right: 19px;
}

@media (max-width: 620px) {
    .home-info p span {
        display: block;
        margin-right: 0;
    }
    
    .home-info p:nth-child(1) {
        margin-bottom: 0;
    }
    
    p {
        font-size: 13px;
    }
}

@media (max-height: 630px) {
    .content {
        margin-top: 20px;
        margin-bottom: 20px;
        top: unset;
        transform: none;
    }
        
}