html {
    height: 100%;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

body {
    height: 100%;
    background-color: #151517;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: 0;
    margin-bottom: 16px;
}

h1,
p {
    color: #808080;
    margin: 0;
}


/* -----------------------BODY-------------------------- */

.container {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* -----------------------FOOTER-------------------------- */

.container-footer a {
    display: flex;
    justify-content: center;
}

.container-footer img:hover {
    opacity: .8;
}

.container-footer hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #808080;
    margin: 16px 0;
}


/* -----------------------RESPONSIVE-------------------------- */

@media screen and (max-width: 480px) {
    .container img {
        width: 56vw;
        height: auto;
    }
    .container h1 {
        font-size: 1.125em;
    }
    .container-footer p {
        font-size: .8em;
    }
    .container-footer hr {
        width: 56%;
        margin: 16px auto;
    }
}