﻿* {
    font-family: 'Montserrat', sans-serif;
}

html, body {
    margin: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-size: cover;    
    background-position: center;
    background-color: #222222;
}

p {
    margin-bottom: 0;
    margin-top: 0;
    font-weight: normal;
    font-size: 4vw;
}

img {
    width: 80%;
}

a {
    text-decoration: underline;
    color: white;
}

/* sm devices */
@media (min-width: 576px) {
    
}

/* md devices */
@media (min-width: 768px) {

}

/* lg devices */
@media (min-width: 992px) {
    p {
        font-size: 2vw;
    }
    
    img {
        width: 50%;
    }
}

/* xl devices */
@media (min-width: 1200px) {
    
}