*  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
} 
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #a3966a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    background: white;
    color: #a3996a;
    padding: 10px 15px;
    border-radius: 50%;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

nav ul li a:hover {
    color: #90553c;
}


.First {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    text-align: center;
    background: #f1e7dc;
}
.Second {
    display: flex;
    height: 90vh;
    background: #f1e7dc;
}
.profile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info h1 {
    font-size: 20px;
    color: #a3966a;
    font-weight: bold;
    margin: 10px 0;
}

.info p {
    font-size: 16px;
    color: gray;
    max-width: 400px;
    margin: 10px auto;
}

.button {
    margin-top: 20px;
}

.Contact {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #90553c;
    color: #90553c;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.Contact:hover {
    background:#90553c ;
    color: white;
}
.social {
    display: flex;
    gap: 15px;
}

.social a {
    text-decoration: none;
    font-size: 20px;
    color: white;
    transition: 0.3s ease;
}

#one {
   color: #a3966a;
   text-align:start;
   display: flex; 
   text-align: left;
   flex: 1;
   max-width: 500px;
   padding: 50px;
}

#img {
    height: 450px;
    width: 90%;  
    max-width: 400px; 
    border-radius: 10px; 
    padding : 20px;
    display : block;
    margin-left: auto;
}

#text {
    font-size: 18px;
    color:grey;
    max-width: 900px;
    margin-top: 100px;
    text-align: left;
}