body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

    /* background-image: url('../img/logo_1920x1080.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center; */
    color: #333;
}

img.landingBackground {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 800px;
}

/* Mobile Styles */
@media (max-width: 600px) {
    img.landingBackground {
        width: 100%;
        height: auto;
    }
}
  
/* Tablet Styles */
@media (min-width: 601px) and (max-width: 1024px) {
    img.landingBackground {
        width: 100%;
        height: auto;
    }
}