body {
  font-family: "Open Sans", "Montserrat", "sans-serif";
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.projects {
  position: fixed;
}
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  transition: opacity 0.3s ease;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

.overlay-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}

#openOverlay {
  margin: 20px;
}

#closeOverlay {
  width: 100%;
  position: relative;
  margin-top: 20px;
  background-color: transparent;
  color: red;
  border-radius: 50%;
  text-align: right;
}
#closeOverlay:hover {
  color: rgba(255, 0, 0, 0.416);
}
#contact {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
}

form {
  display: flex;
  flex-direction: column;
  color: black;
}
.messageField {
  height: 20vh;
  border-top-left-radius: 15%;
  border-bottom-right-radius: 15%;
}

label {
  padding-top: 20px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 5px;
  border: 1px solid #ccc;
}

.contactameButton {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contactameButton:hover {
  background-color: #0056b3;
  border-top-left-radius: 35%;
  border-bottom-right-radius: 35%;
}

#statusMessage {
  margin-top: 10px;
  color: green;
}
