html {
    background-color: #ffff;
    /* Fonts: Alef, Consolas, Robot Mono*/
    font-family: 'Roboto Mono';
    height: 100%;
}

body {
    margin: 0;
    background-color: #ffff;
    font-family: 'Roboto Mono';
}

/* Scale wrapper so the menu can stay fixed to the viewport */
.page-scale {
    /* Use zoom so layout and visuals shrink together (avoids extra blank space) */
    zoom: 0.9;
    width: 100%;
}

@supports not (zoom: 1) {
    .page-scale {
        /* Fallback for browsers without zoom */
        transform: scale(0.9);
        transform-origin: top left;
        width: 111.111%;
    }
}

.content {
    max-height: 90%;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 24px;
    padding: 20px;
    padding-right: 200px;
    box-sizing: border-box;
    align-items: start;
}

.headshotContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Roboto Mono';
    font-size: 16px;
    text-align: center;
    gap: 12px;
    justify-self: start;
}

.headshot {
    width: 280px;
    height: auto;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bioContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.bio {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1100px;
    text-align: left;
    font-family: 'Roboto Mono';
    gap: 20px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.bioIntro {
    font-size: 18px;
    min-width: 300px;
    max-width: 360px;
    align-self: stretch;
    background-image: url('../images/grey-background.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    text-align: center;
    line-height: 1.6;
    box-sizing: border-box;
    display: grid;
    align-content: center;
}

.bioBody {
    font-size: 16px;
    width: 100%;
    max-width: 600px;
}

.bioColumns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.bioIntro b {
    font-weight: 800;
}

.emailLink {
    color: black;
}

.titleContainer {
    text-align: Left;
    margin-bottom: 20px;
}

.titleContainer h1 {
    margin: 0px;
    font-family: 'Roboto Mono';
    font-size: 40px;
    font-weight: 100;
}

titleContainer h3 {
    margin: 0px;
    font-family: 'Roboto Mono';
    font-size: 20px;
    font-weight: 100;
}

h1 {
    text-align: left;
}

.footer {
    margin-top: auto;
    /* margin-top: 40px; */
    /* padding: 20px; */
    text-align: center;
}

.iconContainer {
    display: flex;
    padding: 20px;
    justify-content: center;
    /* Center icons horizontally */
    gap: 10px;
    /* Space between icons */
}

/* Style for Icons */
.icon {
    width: 30px;
    /* Set small size */
    height: auto;
    transition: transform 0.2s ease-in-out;
}

/* Add Hover Effect */
.iconContainer .icon:hover {
    transform: scale(1.2);
    /* Slightly enlarge on hover */
}



/* img{
    display: block;
    margin: 0 auto;
    width: 50%;
    height: auto;
} */

/* Position Menu Button at Top Right */
#menu-btn {
    font-size: 25px;
    padding: 10px;
    border: none;
    background: white;
    color: black;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
    /* Moves the button to the right side */
    z-index: 1000;
}

/* Side Menu Styling */
.menu {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    /* Change from left to right */
    background: white;
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
}


/* Menu Links */
.menu a {
    padding: 15px;
    text-decoration: none;
    font-size: 20px;
    color: black;
    display: block;
    transition: 0.3s;
}

.menu a:hover {
    background: #575757;
}

/* Close Button (Inside Menu) */
#close-btn {
    /* position: absolute; */
    top: 10px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
}

@media (max-width: 959px) {
    .content {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 20px;
    }

    .bio {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .bioIntro,
    .bioBody {
        max-width: 100%;
        align-self: stretch;
    }
}