
body {
    font-family: "Noto Serif";
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background-color: #FFF6EA;
    color: black;
}

.about-me-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.testimonial {
    text-align: center;
    font-style: italic;
    font-size: 18.5px;
    margin-bottom: 20px;
    color: black;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.image-container {
    flex: 1 1 40%;
    max-width: 400px;
    border-radius: 10%;
    overflow: hidden;
    text-align: center;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-container {

    flex: 1 1 50%;
    max-width: 600px;
    text-align: center;
}

.text-container h2 {
    color: #c48b7d;
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.text-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}

.text-container p {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.text-container a {
    color: #c48b7d;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid #c48b7d;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.text-container a:hover {
    color: #333;
    border-color: #333;
}


.contact-container {
    justify-content: center;
    align-items: center;
    text-align: center;  
    flex-direction: column;
    width: 90%; 
    margin:auto;;

}


.contact-container h1 {
    font-size: 24px;
    margin-bottom: 15px;
    color: black;
}

.contact-container p {
    font-size: 18px;
    margin-bottom: 10px;
    color: black;
    line-height: 2.5;
}

.contact-container a {
    color: #007bff; 
    text-decoration: none;  
    font-weight: bold;
}

.contact-container a:hover {
    text-decoration: underline;  
}

.hidden{
    opacity: 1;
    transition: all 2s;
}

.show {
    opacity: 1;
}
.hiddens{
    opacity: 1;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 2s;
}

.shows {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}



@media(prefers-reduced-motion) {
    .hidden {
        transition:none;
    }

}


.topnav {
    display: flex;
    overflow:hidden;
    justify-content: space-between;
    padding: 10px;
    align-items: center;

}
.topnav a {
    display: inline-flex;
    align-items: center;
    font-family: "Noto Serif";
    text-decoration:none;
    color: black;
    text-align: center;
    padding: 20px 20px;
    font-size: 17px;
    justify-content: center;
    transition: background-color 0.3s ease;

}

.topnav a:hover {
    font-family: "Noto Serif";
    text-decoration:none;
    transition: transform 0.3s ease;  
   transform: scale(1.05); 

    font-weight: 150%;
    color:black;
}
.topnav a.active{ 
    background-color: 04AA6D;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        gap: 10px;
    }

    .image-container,
    .text-container {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .text-container h2 {
        font-size: 24px;
    }

    .text-container h1 {
        font-size: 28px;
    }

    .text-container p {
        font-size: 16px;
    }
    
@media screen and (max-width: 600px) {

    .topnav {
        flex-direction: column; 
        align-items: flex-start;
        padding: 10px; 
    }
    
    .topnav a {
        padding: 10px; 
        font-size: 14px; 
        text-align: left;
    }
    
    .topnav img {
        width: 20px; 
        height: auto;
    }


}
}