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

.about-me-container {
    text-align: left;
    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 {
    display: flex;
    max-width: 100%;
    text-align: center;
    justify-content: center;
}

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

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




.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;
}

.container {
    width: 80%;
    margin: 50px auto;

}
.contact-box{
    background-color: white;
    display: flex;
    border-radius: 20px;
    box-shadow: 0px 5px 15px 0px rgba(28, 0, 181, 0.3);


}

.contact-left {
    flex-basis: 60%;
    padding: 40px;
    border-radius: 20px;
}
.contact-right {
    flex-basis: 50%;
    border-radius: 20px;
    padding: 40px;
    background-color: #DEEFF5;
    color: #c48b7d;

}

h1 {
    margin-bottom: 10px;
}
.container p{
    margin: 40px auto;
}

.input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;


}

.input-row .input-group{
    flex-basis: 45%;

}
input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    padding-bottom: 5%;
}

textarea{
    width: 100%;
    border: 1px solid black;
    outline: none;
    padding: 10px;
    box-sizing: border-box;
    max-width: 600px;
    max-height: 600px;
}

label{
    margin-bottom: 6px;
    display: block;
    color: #c48b7d;
    font-weight: 180%;
}

button{
    background-color: #c48b7d;
    color: white;
    height: 50px;
    border-radius: 20px;
    box-shadow: 0px 5px 15px 0px rgba(68, 35, 255, 0.3);
}

button:hover{
    transition: transform 0.3s ease;  
   transform: scale(1.1); 
   cursor: pointer;
}

contact-left h3{
    color: #1c00b5;
    font-weight: 600;
    margin-bottom: 30px;

}

tr td:first-child{
    padding-right: 20px;

}

tr td{
    padding-top: 20px;
    font-size: 19px;

}


@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;
    }
    .contact-box {
        flex-direction: column;
    }

    .contact-left, .contact-right {
        flex-basis: 100%;
        padding: 20px;
    }

    .input-row .input-group {
        flex-basis: 100%;
    }

    input, textarea {
        font-size: 14px;
    }

    button {
        font-size: 16px;
    }
    
    .contact-container h1 {
        font-size: 20px;
    }

    .contact-container p {
        font-size: 16px;
    }
}