html, body, .container, .content-overlay{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 10.5rem;
    line-height: 8rem;
    color: #FFFFFF;
    //text-stroke-width: 10px;
    text-shadow: 0px 0px 2px #000000;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    color: #FFF;
}

p {
    font-family: 'Roboto', sans-serif;
    color: #FFF;
}

a {
    color: #01E2FE;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
}

.content {
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.content-overlay .usage-box {
    width: 80%;
    border: 3px solid #01E2FE;
    border-radius: 25px;
    background-color: #333333;
    position: relative;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px 8px 20px;
    text-align: left;
}

#credits {
    position: absolute;
    bottom: 0;
    right: 15px;
}

#credits p {
    font: 700 1.1rem "Helvetica Neue",Helvetica,Arial,sans-serif;
}

@media (max-width: 500px) {


    .content-overlay {
        padding-top: 15px;
    }

    .content {
        display: block;
        top: 0;
        transform: translateY(0%);
    }

    #credits {
        position: relative;
        margin-top: 1.5rem;
        bottom: auto;
        right: auto;
    }
}