/* ------MOBILE FIRST------ */

/* FOOTER */
@media only screen and (max-width: 700px) {
    
img {
    height: 100%;
    width: 100%;
    margin-top: 100px;
}

}

/* ------Desktop CSS------ */

html {
    box-sizing: border-box;
    font-size: 100%;
}

*,
:after,
:before {
    box-sizing: inherit;
    border-radius: 0 !important;
    -moz-border-radius: 0 !important;
}


/* BODY */
body {
    background-position: center center;
    background-image: linear-gradient(#002A32, #17BEBB);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    text-align: center;
    margin-top: 100px;
}


/* FOOTER */
footer {
    position: inherit;
    text-align: center;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 0.9rem;
    color: #173753;
}


