body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #fefefe 0%, #f8f4f0 100%);
  min-height: 100vh;
  color: #2d3748;
}

header {
    display: flex; /* Make the header a flex container */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center items horizontally within the header */
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,244,240,0.95) 100%);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Style the logo container */
.logo-container {
    margin-bottom: 15px; /* Add space between the logo and the navbar */
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(255,255,255,0.8) 100%);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(212,175,55,0.15);
}
.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,244,240,0.9) 100%);
  margin-bottom: 15px; /* Add space between the logo and the navbar */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

nav ul {
    display: flex; /* Make the list a flex container for horizontal links */
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
    justify-content: space-between;
    gap: 20px; /* Add space between nav links */
}

nav a {
    display: inline-block;
    padding: 8px 16px;/* box ke andar space*/
    border: 2px solid #2d3748;  /* box border*/
    border-radius: 6px;
    text-decoration: none;
    color: bisque;
    transition: all 0.3 ease;
    background-color:#2d3748;

}

nav a:hover {
    background-color:palevioletred;
    color:black;
    transform: scale(1.05);
    box-shadow: 0 4px 12px pink (212, 175, 55, 0.3);
}

footer {
  text-align: center;
  padding: 20px;
  background-color:gray;
  margin-top: 50px;
  font-size: x-large;
}

.about-image{
  margin-left: 600px;
  align-content: flex-end;
  margin-top: -650px;
}

.about-container{
  margin-left: 50px;
  height:700px;
  width: 500px;
  font-size: larger;
  font-family:Georgia, 'Times New Roman', Times, serif;
}
.about-text{
  font-size: larger;
}


  








