body {
    background-color: #ffffff;
    font-family: 'Merriweather', serif;
    margin: 0;
    height: 100%;
    display: flex;
    color: #37779b;
    justify-content: flex-start; 
    align-items: center;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #37779b; /* maybe*/
}

.sidenav {
    width: 384px;
    height: 100vh;
    padding: 20px 20px 20px 40px;
    background-color: #37779b;
    position: fixed; 
    top: 0;
    left: 0;
    box-sizing: border-box;
    overflow-y: auto;
    z-index: 2; 
    display: flex;             
    flex-direction: column;   
    justify-content: flex-start; 
    overflow-y: auto;
}


.heading-image {
    width: 100%;
    height: 150px;
    background-image: url('https://raw.githubusercontent.com/jyoiyer/jyoiyer.github.io/main/heading1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; /* testing */
    z-index: 3;
    position: relative;
    margin-bottom: 0px; /* need to change this to 20px possibly */
    
}

.footer-images {
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center; /* back i guesssss */
    align-items: center; /* back i guess */
    margin: 0 5px;    
    cursor: pointer;
}

.footer-images img { 
    width: 100%;                
    height: 100%;  
    object-fit: contain;       
}
    
.signature-image {
    width: 100%;
    height: 100px;
    background-image: url('https://raw.githubusercontent.com/jyoiyer/jyoiyer.github.io/main/signature.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left; /* temp fix */
    animation: glowPulse 4s infinite ease-in-out;  
    filter: drop-shadow(0 0 0px white); 
    margin-top: 20px; /* Adding space above for the footy */
    margin-bottom: 0; /* Adding space above for the footy */
    z-index: 1; 
    cursor: pointer;
}

.sidenav ul {
    list-style-type: none;
    padding-left: 0px;
    margin: 0;
    display: block;
    /*justify-content: space-around;*/
    /*align-items: center;*/
    /*flex-wrap: nowrap;*/
    /*color: #ffffff;*/
}

.sidenav li {
    margin: 6px 0;
    display: block;   
    position: relative;
    padding-left: 20px; 
   
}

.sidenav a::before {
    content: ''; /* omgggg testing */
    font-size: 0.8em;
    margin-right: 5px;
}


.sidenav a {
    text-decoration: none;
    color: #ffffff; /* tryinnnng */
    display: block;
    padding: 6px 15px;
    white-space: nowrap;
    font-size: 14px; 
    text-align: left; 
}

.sidenav .has-submenu > a::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.sidenav li:open > a::after {
    transform: rotate(180deg); 
}

.sidenav ul ul {
    display: none;
    padding: 15px;
}

.sidenav li.open > .submenu {
    display: block;
}

.sidenav li:hover > ul {
    display: none;
}

.sidenav ul ul li {
    margin 4px 0:;             
}

.content {
    margin-left: 384px;          
    padding: 60px 80px;          
    min-height: 100vh;
    box-sizing: border-box;
    background-color: #ffffff;
    max-width: calc(100% - 384px);           
}

.menu-button {
    display: none;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: left;
    color: #37779b; /* trying this now */
}

section p {
    font-size: 8px;
    margin: 20px 0;
    padding: 20px 0;
    text-align: left;
    width: 100%;
    color: #37779b;  /* trying this now */
}


@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 0px white);         
    }
    50% {
        filter: drop-shadow(0 0 20px white);       
    }
    100% {
        filter: drop-shadow(0 0 0px white);       
    }
}

.watermark {
    margin-top: 0.2em;
    opacity: 0.3;
    color: #888;
    font-size: 8px;
    font-family: 'DM Mono', monospace;
    line-height: 1;
}

.watermark a {
    text-decoration: none;
    color: #888;
}

@media screen and (min-width: 769px) {
    section p {
        font-size: 15px;
        padding: 20px 0;
    }

    footer img {
        margin: 0 2cm;
    }

    .text-image-section {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .text-content {
        flex: 1;
    }

    .image-content {
        flex-shrink: 0;
    }
}

@font-face {
    font-family: 'Merriweather';
    src: url('https://raw.githubusercontent.com/jyoiyer/jyoiyer.github.io/main/Merriweather-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



