body {
  color: #fca47c;
  background-color: #097c87;
  margin: 0;
  line-height: 1;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.logo{
    text-align: center;
    border-radius: 20px;
    width: fit-content;
    margin: 40px auto;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(75, 63, 114, 0.3);
  }
.scorpion{
  width: 140px;
  border-radius: 50%;
}
.logo h1{
  font-size: 34px;
  font-weight: 500;
  margin-top: 20px;
  letter-spacing: 1px;
  font-family: Georgia,serif;
  text-align: center;
}
.logodescription{
  font-size: 16px;
  text-align: center;
margin-top: 10px;
margin: 30px auto;
max-width: 900px;
border-radius: 7px;
}
.navbar{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
background-color: rgb(34, 32, 32);
  list-style: none;
}
.navlinks{
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 20px;
}
.navlinks a{
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
}
.navlinks a:hover{
  color: #cfdc1b;
}
#Biography{
  width: 200px;
  height: 200px;
  border-radius: 100%;
  justify-content: center;
  margin-top: 50px;
  align-items: center;
  display: flex;
  margin-inline: auto;
}
section{
 background-color: rgb(34, 32, 32);
  border-radius: 7px;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(75, 63, 114, 0.3);
padding: 24px;
transition: box-shadow 0.3s ease;
}
section:hover{
  box-shadow: 10px 10px 18px rgba(0, 0, 0, 0.15);
}
#gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px auto;
  padding: 40px;
  border-radius: 10%;
}
#gallery img{
  width: 100%;
  padding: 40px auto;
border-radius: 100%;
}
form{
    max-width: 650px;
    margin: 24px auto;
}
form label{
    margin-bottom: 8px;
    font-weight:600px ;
    display: block;
}
form input,form textarea,form button{
width: 100%;
padding: 14px;
margin-bottom: 18px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 8px;
}
form input:focus, form textarea:focus{
    border-color: #007bff;
    outline:none;
}
form button{
    background-color: #3282d8;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease ;
    cursor: pointer;
}
form button:hover{
    background-color: #0056b3;
}
.p{
  color: #87320b;
  font-weight: 300;
  text-align: justify;
}
html{
  scroll-behavior: smooth;
}