body {
    font-family: cursive;
    background: linear-gradient(to bottom, #ebf9af 30%, #b4fdc4 100%);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container, .content {
    padding: 30px;
    box-sizing: border-box;
}
h1 {
    text-align: center;
    color:  #ff0800; 
    font-family: cursive;
}
h2 {
    color: rgb(255, 81, 81);
}
h3 {
    color: rgb(86, 85, 85);
}
a:not(.navbar a), a:not(.navbar a):hover {
    color: #7800a7;
}
.navbar {
    background-color: #118a63c7;
    text-align: center;
    padding: 10px 0;
    position: static; /* Make it a static element, no need to use fixed or absolute positioning */
    width: 100%; /* Full width */
}

.navbar a {
    display: inline-block; /* Make links inline so they line up horizontally */
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.resume-container {
    flex: 0 0 23%;
    text-align: center;
    padding: 20px;
}

.image-container img {
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}

.project {
    margin-bottom: 20px;
}

.project-title, .project-description {
    padding: 0 30px;
}
ul {
    margin-bottom: 20px;
}

.tp-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.tp-images, .tp-text {
    display: flex;
    flex-direction: column;
}

.tp-images {
    flex: 1;
    max-width: 50%;
    padding: 30px;
}

.tp-text {
    flex: 2;
}

.tp-images img {
    align-items: center;
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: block;
}


#landingPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
#mainContent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}
#textSection {
    flex: 1;
    padding: 20px;
}
#imageSection {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
#imageSection img {
    width: auto;
    max-width: 100%;
    max-height: 500px;
    height: auto;
    margin: 10 50px;
}
#contactInfo {
    text-align: center;
    width: 100%;
}
#toggleSwitch {
    position: absolute;
    top: 20px;
    right: 20px;
}
.toggle {
    margin-left: 5px;
}


.content ul {
    padding: 0;
    margin: 0;
}

.content li {
    margin-bottom: 30px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}
