/*start BODY*/
        body {
            font-family: Arial, sans-serif;
            margin: 0; /* Remove default margin */
    }
/*end body*/

/*start NAVBAR*/
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            max-width: 100%;
            height: 0.5in;
            background-color: white;
            color: black;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
            z-index: 1;
            box-sizing: border-box;
            text-transform: uppercase;
        }
        #navbar-container {
            width: 100%;
        }
        .navbar .brand {
            font-size: 1.2rem;
        }
        .navbar .brand a {
            color: black;
            text-decoration: none;
        }
        .navbar .links {
            display: none;
        }
        .navbar .links a {
            color: black;
            text-decoration: none;
        }
        .navbar .hamburger {
            display: block;
            cursor: pointer;
            color: black;
        }
        .overlay {
            position: fixed;
            bottom: 10px;
             right: 10px;
            background-color: rgba(0, 0, 0, 0.5); /* Transparent black background */
            color: white;
            padding: 10px;
            border-radius: 5px;
        }
        .photo-container {
            position: absolute;
            top: 0.5in; /* Adjust this value based on the navbar height */
            width: 100%;
            height: calc(100% - 0.5in); /* Adjust this value based on the navbar height */
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            color: white;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            z-index: 2;
            animation: fadeIn 0.5s;
        }
        .modal .close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            cursor: pointer;
        }
        .modal a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            margin: 1rem 0;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @media (min-width: 768px) {
            .navbar .links {
                display: flex;
                gap: 1rem;
            }
            .navbar .hamburger {
                display: none;
            }
        }
/*end of nav*/

/*start COMING SOON*/
        h1 {
            font-size: 3em;
            margin-bottom: 20px;
        }
        p {
            font-size: 1.2em;
        }
        .comingsoontext {
            text-align: center;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
/*end coming soon*/

/*start PHOTOS*/
        .photoscontent {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, auto);
            gap: 20px; /* Space between the boxes */
            padding: 20px;
            box-sizing: border-box;
            width: 100%;
            overflow-y: auto; /* Enable vertical scrolling */
            margin-top: 60px; /* Space between the navbar and the boxes */
            position: relative;
            justify-content: center;
            height: calc(100vh - 50px); /* Full viewport height minus navbar height */

        }
        .box {

            width: 100%;
        }
        .box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
/* end photos*/

/*start RESUME*/
        .resumecontent {
            padding: 0;
            overflow: hidden; /* Prevent scrolling */
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100vw; /* Full viewport width */
            background-color: white; /* White background */
            border-top: 2px solid black; /* 2px black border */
            box-sizing: border-box; /* Include border in element's total width and height */
            margin-top: 50px; /* Margin to account for the navbar height */
            height: calc(100vh - 50px); /* Full viewport height minus navbar height */
        }
        .resumecontent embed {
            width: 100%;
            height: 100%;
        }
        .download-button {
            position: fixed;
            bottom: 10px;
            left: 10px;
            background-color: #333;
            color: black;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 14px;
            display: none; /* Hide by default */
        }
        @media (max-width: 767px) {
            .download-button {
                display: block; /* Show on smaller screens */
            }
        }
/*end resume*/

/*start WRITING CONTENT*/
        .writingcontent {
            padding: 20px;
            margin-top: 50px; /* Margin to account for the navbar height */
            height: calc(100vh - 50px); /* Full viewport height minus navbar height */
        }
        .writing-section-title {
            text-transform: uppercase;
            text-align: left;
            margin-bottom: 10px;
        }
        .writing-section-title::after {
            content: '';
            display: block;
            width: 50%;
            height: 2px;
            background-color: black;
            margin-top: 5px;
        }
        .books,.poetry {
            padding: 20px 0;
        }
        .books-content {
            text-align: left;
            margin-bottom: 20px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 10px;
        }
        .poetry-content {
            overflow-x: auto;
        }
        .poetry-table {
            width: 100%;
            border-collapse: collapse;
        }
        .poetry-table th, .poetry-table td {
            border: none;
            padding: 8px;
            text-align: left;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 10px;
        }
        @media (max-width: 767px) {
            .poetry-table {
                display: block;
                overflow-x: auto;
                white-space: normal;
            }
        }
/*end WRITING CONTENT*/

/*start media content*/
.mediacontent {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px; /* Space between the videos */
            padding: 20px;
            box-sizing: border-box;
            width: 100%;
            height: calc(100% - 0.5in); /* Adjust height to account for navbar */
            overflow-y: auto; /* Enable vertical scrolling */
            margin-top: 0.5in; /* Space between the navbar and the videos */
        }
        .mediasection-title {
            display: flex;
            justify-content: space-between;
            width: 75%; /* 3/4 of the screen size */
            font-size: 2em;
            text-align: center;
        }
        .mediasection-title a {
            color: black;
            text-decoration: none;
            text-transform: uppercase;
        }
        .mediavideo-container {
            width: 100%;
            max-width: 600px; /* Adjust as needed */
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .mediavideo-container video {
            width: 100%;
            height: auto;
        }
        .mediavideo-title {
            margin-top: 10px;
            font-size: 1.2em;
            text-align: center;
        }
        @media (max-width: 600px) {
            .mediasection-title {
                flex-direction: column;
                align-items: center;
            }
        }
/*end media content*/

/*start songs content*/
.songscontent {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px; /* Space between the videos */
            padding: 20px;
            box-sizing: border-box;
            width: 100%;
            height: calc(100% - 0.5in); /* Adjust height to account for navbar */
            overflow-y: auto; /* Enable vertical scrolling */
            margin-top: 0.5in; /* Space between the navbar and the videos */
        }
        .songssection-title {
            display: flex;
            justify-content: space-between;
            width: 75%; /* 3/4 of the screen size */
            font-size: 2em;
            text-align: center;
        }
        .songssection-title a {
            color: black;
            text-decoration: none;
            text-transform: uppercase;
        }
        .songsvideo-container {
            width: 100%;
            max-width: 600px; /* Adjust as needed */
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .songsvideo-container video {
            width: 100%;
            height: auto;
        }
        .songsvideo-title {
            margin-top: 10px;
            font-size: 1.2em;
            text-align: center;
        }
        @media (max-width: 600px) {
            .songssection-title {
                flex-direction: column;
                align-items: center;
            }
        }
/*end songs content*/

/*start scenes content*/
.scenescontent {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px; /* Space between the videos */
            padding: 20px;
            box-sizing: border-box;
            width: 100%;
            height: calc(100% - 0.5in); /* Adjust height to account for navbar */
            overflow-y: auto; /* Enable vertical scrolling */
            margin-top: 0.5in; /* Space between the navbar and the videos */
        }
        .scenessection-title {
            display: flex;
            justify-content: space-between;
            width: 75%; /* 3/4 of the screen size */
            font-size: 2em;
            text-align: center;
        }
        .scenessection-title a {
            color: black;
            text-decoration: none;
            text-transform: uppercase;
        }
        .scenesvideo-container {
            width: 100%;
            max-width: 600px; /* Adjust as needed */
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .scenesvideo-container video {
            width: 100%;
            height: auto;
        }
        .scenesvideo-title {
            margin-top: 10px;
            font-size: 1.2em;
            text-align: center;
        }
        @media (max-width: 600px) {
            .scenessection-title {
                flex-direction: column;
                align-items: center;
            }
        }
/*end scenes content*/
