/* General */
body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6em;
    background: #000;
    background-size: cover;
    color: #9B9B9B;
}

img {
    max-width: 100%;
    height: auto;
}

.full-height {
    height: 100vh;
}

.wrapper {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-width: 420px;
    margin: 0 auto;
    transition: 0.4s;
}

/* Intro */
.intro {
    
}

.intro h2{
    font-size: 20px;
    line-height: 23px;
    margin-top: 70px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.intro p{
    font-size: 16px;
    line-height: 23px;
    text-align: justify;
    margin: 15px 0px;
}

.intro a {
    color: #fff;
    text-decoration: none;
    transition: 700ms;
    font-size: 16px;
}

.intro a:hover {
    color: #9B9B9B;
    text-decoration: none;
    transition: 700ms;
}

@media (max-width: 768px) {
    .wrapper {
        max-width: 350px;
    }
    .intro h2{
        margin-top: 50px;
    }
}

@media (max-width: 425px) {
    .wrapper {
        max-width: 280px;
    }
    .intro h2{
        margin-top: 10px;
        font-size: 18px;
        line-height: 23px;
    }
}