*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.headerinner{
    background-color: rgb(11, 11, 59, 0.5);
    border: 4px black ;
    padding: 0px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navlist{
    list-style: none;
    
    display: flex;
    flex-direction: row;
    gap: 2rem;

}
.navlist li a{
    color: black;
    position: relative;
    font-size: 12;
    font-weight: 500;
    text-decoration: none;
}
.headerinner button{
    width: 80px;
    height: 30px;
    font-weight: 600;
    font-size: 1rem;
    align-items: center;
    background-color: rgb(16, 81, 81);
    color: white;
    box-shadow: 4px 4px 5px rgb(50, 62, 62);
    border-radius: 20px;}
.styled-form button{
    width: 100%;
    height: 30px;
    font-weight: 600;
    font-size: 1rem;
    align-items: center;
    background-color: rgb(16, 81, 81);
    box-shadow: 4px 4px 5px rgb(50, 62, 62);
    border-radius: 20px;
}
.about-header{
    background-color: rgb(28, 9, 9);
    color: rgb(168, 242, 154);
}
.about-profile{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.profile-image{
    width: 500px;
    height: 500px;
    margin: 50px;

}
p{
    width: 600px;
    height: 400px;
    margin-left: 50px;
    margin-top: 20px;
}
.styled-form {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

.styled-form h2 {
  margin-bottom: 15px;
  text-align: center;
  color: #333;
}

.styled-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #555;
}

.styled-form input,
.styled-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.styled-form input:focus,
.styled-form textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.styled-form button {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.styled-form button:hover {
  background: #0056b3;
}

footer{
    display: flex;
    flex-direction: column;
    background-color: rgb(22, 8, 8);
    color: aliceblue;
    position: relative;
    bottom: 0;
}
.contact{
    text-align: center;
}
h2{
    text-align: center;
}