.inter-font {  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.raleway-font {
    font-family: "Raleway", serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
  }

body {
    font-family: "Raleway", serif;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: 60px;
    display: flex;
    justify-content: center;
    height: auto;
    background-color: #ffffff; 
}

.container {
    max-width: 800px;
    margin: 0 20px;
}

header {
    text-align: left;
}

section {
    padding: 10px;
    /* margin: 20px 0; */
    background: none;
    border-radius: 0;
    box-shadow: none;
}

#about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 10px;
}

.about-text {
    flex: 1;
    padding-right: 20px;
}

#profile-pic {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
}

.profile-image {
    /* position: absolute; */
    /* right: 200px;   */
    /* top: 45%;
    transform: translateY(-50%); */
    margin-top: 65%;
    width: 200px;
    height: 200px;
    border-radius: 0%;
}

h2, h3 {
    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 5px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
    #about {
        flex-direction: column;
        align-items: center;
    }

    #profile-pic {
        margin-top: 20px;
    }

    nav li {
        margin: 5px;
    }

    h1 {
        font-size: 1.5em;
    }

    #about {
        flex-direction: column; /* Stack items vertically on small screens */
        padding: 10px;
    }

    #work-experience {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
    }

    nav li {
        margin: 5px 0;
    }
}

nav ul {
    font-size: 16px; /* Default font size for navigation */
}

@media (max-width: 600px) {
    nav ul {
        font-size: 10px; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 400px) {
    nav ul {
        font-size: 10px; /* Further adjust font size for very small screens */
    }
}

footer {
    margin-top: auto; /* Pushes the footer to the bottom */
}

#work-experience {
    padding: 20px;
    margin-top: 10px;
}

h2 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

@media (max-width: 768px) {
    #work-experience {
        padding: 10px; /* Reduce padding on smaller screens */
    }
}