@media screen and (max-height: 480px), (min-aspect-ratio: 5/4) and (max-width: 1023px) {  /* NOTHING CAN BE LANDSCAPE UNTIL 1024 WIDTH */
    nav, main {
        display: none;
    }
    body {
        background-image: url("../images/website/phone.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100px;
    }
}