body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: rgb(254, 255, 246);
  color: #333;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.menu li {
  margin: 0 15px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  position: relative;
  transition: color 0.3s;
}

.menu a:hover {
  color: #007bff;
}

.menu a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #007bff;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #007bff;
  transition: width 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

#page_title {
  position: absolute;
  top: 10px;
  left: 35px;
  text-align: left;
  width: 100%;
  font-size: 60px;
  font-weight: bolder;
  color: rgb(45, 54, 32);
}

#contact_form {
  position: absolute;
  top: 25%;
  left: 27%;
  width: 40%;
  height: 380px;
  padding: 30px;
  background-color: #f1fff1ab;
  border-radius: 20px;
  box-shadow: 4px 4px 10px rgba(10, 19, 26, 0.445);
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input {
  width: 90%;
  padding: 5px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  background-color: #f5f3ff;
}

input:hover {
  width: 90%;
  padding: 5px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  background-color: #f5f3ff;
  border-color: #007bff;
}

input:focus {
  width: 100%;
  padding: 5px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  background-color: #f5f3ff;
  border-color: #007bff;
  outline: none;
}

textarea:hover {
  width: 100%;
  padding: 5px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  background-color: #f5f3ff;
  border-color: #007bff;
}

textarea:focus {
  width: 100%;
  padding: 5px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  background-color: #f5f3ff;
  border-color: #007bff;
  outline: none;
}

textarea {
  width: 90%;
  padding: 5px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

td {
  padding: 10px;
}

#contact_submit {
  position: relative;
  left: 450px;
  bottom: 0px;
  margin-top: 20px;
  border: solid 1px blue;
  background-color: lightblue;
}

#sent {
  position: absolute;
  bottom: 20px;
  left: 10px;
  color: green;
}

#fail {
  position: absolute;
  bottom: 20px;
  left: 10px;
  color: red;
}
