body {
    background: white;
    color: black;
    margin: 0; /* Needed so that the div:under-construction centers properly... */

    height: 100dvh; /* [2025-12-06 - BUG-4] : Means that safari wont overlap the url address bar with my footer buttons */
    width: 100vw;

    font-size: 1.5rem;
}


section {
    text-align: left;
}

.site-full {
    display: flex;
    flex-direction: column;

    height: 100dvh; /* [2025-12-06 - BUG-4] : Means that safari wont overlap the url address bar with my footer buttons */
    width: 100vw;

}

.site-body {
    
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 30px;
}

.flex-contactme {
    display: flex;
    gap: 20px;
    justify-content: flex-start;

}

.contactme-icon {
    width: 50px;
    height: 50px;
}


@keyframes fadepulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.site-header {
    padding: 10px 20px 10px 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    background: rgba(0, 0, 0, 0.034);

    .menu-options {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;

        a {
            color: black;
        }

        a:hover {
            transform: scale(1.2);
        }
    }

    .site-logo {
        background-image: url("assets/logo.png");
        background-repeat: round no-repeat;
        min-width: 60px;
        min-height: 50px;
    }
}

.picture-of-me {
    background-image: url("assets/me.jpg");
        background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: contain;
    min-width: 100%;
    min-height:100%;
}


.mobileonly {
    display: none;
}

.desktoponly {
    display: inherit;
}

@media only screen and (max-width: 768px) {

    .desktoponly {
        display: none;
    }

    body {
        font-size: 1.0rem !important;
    }

    .mobileonly {
        display: inherit;
    }

    .site-full {
        flex-direction: column-reverse;
    }

    .site-body { 
        grid-template-columns: auto;

        /* [2025-12-06 - BUG-4] - Start */
        height: auto;
        flex: 1;
        min-height: 0;
        overflow: auto;
        /* [2025-12-06 - BUG-4] - End */
    }

    .site-header {
        grid-template-columns: 1fr;

        /* [2025-12-06 - BUG-4] - Start */
        flex-shrink: 0;
        /* [2025-12-06 - BUG-4] - End */
    }

    .menu-options {
        justify-content: space-evenly !important;
    }

}

@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}
