body {
    font-family: 'Patrick Hand', cursive;
    margin: 0;
    padding: 0;
    background-color: #FAD02E;
    color: #222;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*header {*/
/*    background-color: #D95D39;*/
/*    padding: 10px 0;*/
/*    text-align: center;*/
/*}*/

/*nav {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 20px;*/
/*}*/

/*nav a {*/
/*    text-decoration: none;*/
/*    color: #222;*/
/*    padding: 5px 15px;*/
/*    border: 1px solid transparent;*/
/*    transition: all 0.3s;*/
/*    border-radius: 5px;*/
/*}*/

/*nav a:hover {*/
/*    border-color: #222;*/
/*    background-color: #FAD02E;*/
/*}*/

.content {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    flex: 1;
    background-color: #FFF8DC;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

h1, h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D95D39;
}

.about-me img {
    max-width: 200px;
    display: block;
    margin: 20px auto;
    border-radius: 50%;
    border: 4px solid #D95D39;
    transition: transform 0.3s ease;
}

.about-me img:hover {
    transform: rotate(10deg);
}

.about-me p {
    text-align: justify;
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.5;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery img:hover {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/*footer {*/
/*    background-color: #D95D39;*/
/*    color: #222;*/
/*    text-align: center;*/
/*    padding: 20px 0;*/
/*}*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover > a {
    border-color: #222;
}
.logo-img {
    max-width: 10%;
    display: block;
    margin: 0 auto;  /* This will center the image */
}
.navbar {
    display: flex;
    justify-content: center; /* Adjusted from "space-between" to "center" */
    align-items: center;
    flex-wrap: wrap; /* This allows the items to wrap if they don't fit in a single line */
}