html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    background-color: black;
}

* {
    margin: 0;
    padding: 0;
    font-family: Shippori Antique B1;
}

.canvas-container {
    width: 100%;
    height: 80%;
    position: relative;
}

.three-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
}

.about-me-section {
    width: 100%;
    min-height: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background-color: white;
}

.about-me-center-content {
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-me-navigation-text {
    font-size: 100%;
    margin-top: 13%;
}

.about-me-navigation-text-page {
    color: black;
    text-decoration: none;
}

.about-me-navigation-text-page:hover {
    text-decoration: underline;
    color: rgb(84, 63, 237);
}

.about-me-navigation-text-page#this-page {
    text-decoration: underline;
    color: rgb(84, 63, 237);
}


.about-me-intro-statement {
    font-size: 5vw;
}

.about-me-description-box {
    width: 100%;
    margin-top: 3%;
    display: flex;
}

.about-me-left-sidebar {
    width: 20%;
    display: flex;
    flex-direction: column;
}

.about-me-left-sidebar-picture {
    width: 100%;
    aspect-ratio: 1/1;
    background-image: url('./Images/PersonalPicture.jpg');
    background-size: cover;
    border-radius: 5px;
    box-shadow: 5px 5px 0px rgb(84, 63, 237);
}

.about-me-left-sidebar-quick-facts-box {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-me-left-sidebar-quick-fact {
    margin-top: 20%;
    width: 100%;
    height: auto;
    border-style: solid none none none;
    border-width: 2px;
    border-color: rgb(0, 0, 0);
}

.about-me-left-sidebar-quick-fact-title {
    margin-top: 10%;
    font-size: 100%;
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.662);
}

.about-me-left-sidebar-quick-fact-description {
    margin-top: 5%;
    font-size: 90%;
    color: rgba(0, 0, 0, 0.662);
}

.about-me-description-content-box {
    width: 80%;
    padding-left: 5%;
    display: flex;
    flex-direction: column;
}

.about-me-description-content {
    font-size: 100%;
}

.regular-button {
    font-size: 100%;
    padding: 1% 2% 1% 2%;
    text-align: center;
    color: rgb(0, 0, 0);
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid rgb(0, 0, 0);
    transition-duration: 0.4s;
    flex: 0 0 auto;
    margin-top: 5%;
    max-width: fit-content;
    text-decoration: none;
}

.regular-button:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    cursor: pointer;
}

/* DO FOR WIDTH 962 RESPONSIVENESS - OTHERWISE ITS GOOD */
/* ALSO CONVERT TO MARGIN TOP FOR DESKTOP VIEW */

@media screen and (orientation: portrait) {
    
    .about-me-section {
        padding-top: 10%;
        padding-bottom: 5%;
    }

    .about-me-center-content {
        width: 70%;
    }

    .about-me-intro-statement {
        font-size: 8vw;
    }

    .about-me-description-box {
        flex-direction: column;
    }

    .about-me-left-sidebar {
        width: 100%;
        height: auto;
        flex-direction: row;
    }

    .about-me-left-sidebar-picture {
        width: 50%;
    }

    .about-me-left-sidebar-quick-facts-box {
        flex-grow: 1;
        padding-left: 5%;
    }

    .about-me-left-sidebar-quick-fact {
        margin-top: 0;
    }

    .about-me-left-sidebar-quick-fact#second-fact {
        margin-top: 5%;
    }

    .about-me-left-sidebar-quick-fact-title {
        margin-top: 1%;
        font-size: 95%;
    }

    .about-me-left-sidebar-quick-fact-description {
        margin-top: 2%;
        font-size: 85%;
    }

    .about-me-description-content-box {
        padding-left: 0;
        margin-top: 5%;
        width: 100%;
    }

}