body {
    display: flex;
    flex-direction: column;
    font-family: "Palatino", serif; 
    background-color: #f4f1ef;
    margin: 0;
    padding: 0;
}

header {
    margin: 0; /* Reset any default margins */
    padding-left: 20px; /* Add consistent padding */
    padding-top: 10px;
}

h1 {
    margin: 0; /* Ensure no margin on the h1 element */
   font-weight: normal; 
}

nav {
    display: flex;
    justify-content: flex-start;
    padding: 0; /* Ensure no padding */
    margin: 0; /* Ensure no margin */
}

ul, li {
    list-style: none;
}

nav ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    display: flex;
    margin-left: -10px;
}
ul {
    list-style: none; /* Remove bullet points */
}

nav li {
    margin: 0 10px; /* Space between nav items */
}

nav a {
    font-family: "Palatino", serif; 
    font-size: 14pt;
    color: blue;
    font-style: italic;
    text-decoration: none; /* Remove underline from links */
}

a {
    font-family: "Palatino", serif; 
    font-size: 14pt;
    color: blue;
    font-style: italic;
    text-decoration: none; /* Remove underline from links */
}

strong {
   
    font-family: "Palatino", serif; 
        font-size: 14pt;
        color: rgb(0, 0, 0);
        font-style: italic;
        text-decoration: none; /* Remove underline from links */
    
}

a:hover {
    text-decoration: none; /* Add underline on hover */
}


nav a:hover {
    text-decoration: none; /* Add underline on hover */
}

.main-content {
    display: flex;
    justify-content: flex-start;
    padding: 20px;
}


.about-column-text {
    margin-top: 20vh;
    margin-left: 3vw;
    width: 500px;
}
.column-text {
    width: 300px;
}

.column-text img {
    width: 300px;
}

.column-text p {
    margin-bottom: 35px; /* Space between text elements */
}

.column-padding {
    width: 300px;
}

.column-images {
    display: flex;
    flex-direction: column;
}
.image-container {
    margin-bottom: 100px; /* Space between images */
    display: flex;
    align-items: flex-start; /* Align labels to the top of the image */
    
}

.image-container img {
    margin-right: 10px;
    width: 40vw;
}

.image-label {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.image-title {
    font-style: italic;
   
}

.image-year {
    font-style: normal;
}

.image-materials {
    font-style: normal;
    margin-top: 0px; /* Ensure materials are on a new line */
}



.image-container span {
    align-self: flex-start; /* Align text label with the rightmost corner of the image */
}

form {
    display: flex;
    flex-direction: column;
    width: 500px; /* Adjusted to match content width */
    max-width: 100%;
}

.form-group {
    margin-bottom: 20px; /* Space between form fields */
}

label {
    display: block;
    font-family: "Palatino", serif; 
    font-size: 14pt;
    color: black;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: "Palatino", serif; 
    font-size: 14pt;
}

textarea {
    resize: vertical; /* Allow vertical resizing only */
}


/* Dropdown styling */
.dropdown {
    position: relative;
}



.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
    top: 0; /* Align with the top of the parent */
    left: 100%; /* Move to the right of the parent */
}

.main-dropdown-content {
    display: none; 
}
.dropdown:hover .main-dropdown-content {
    display: block;
}

.dropdown-content li a {
    padding: 0px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}


.dropdown:hover .dropdown-content {
    display: block;
}

.resume-container {
    display: flex;
    gap: 40px; /* Spacing between columns */
    padding: 20px;
    font-family: "Palatino", serif; /* Use Palatino font */
}


