
/* POPUP ELEMENT */
    #popupCtr {
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100vw;
        background: #aaaaaa88;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 10;
    }
    .popup {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: min(600px, 45vh);
        width: min(800px, 60vw);
        padding: var(--gutter);
        background: var(--colorBackground);
    }
    .popup:first-child {
        width: auto;
    }
    .popupButtons {
        display: none;
    }
    .popupButtons button {
        width: 5rem;
    }

@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;
    }
}