@import url('https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,600,800&display=swap');

html, body {
    height: 100vh;
    width: 100%;
    background-color: #242424;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}

h1 {
    color: #dbdbdb;
    font-weight: 200;
    font-size: 12vw;
    margin: 0;
}

span {
    color: #F2C94C;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 1.5rem;
    letter-spacing: 5px;
    text-align: center;
}

h4, h5 {
    margin: 0;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 3px;
    color: #676767;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: #27ae60;
}

@media screen and ( max-width: 800px ) {
    h4, h5 {
        margin-bottom: 0;
        margin-top: 15px;
        letter-spacing: 1px;
    }
    span {
        font-size: 5vw;
        letter-spacing: 5px;
    }
}

@media screen and ( max-width: 400px ) {
    h4, h5 {
        letter-spacing: 0;
    }
    span {
        font-size: 5vw;
        letter-spacing: 5px;
    }
}