* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

/* Contact Form */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f5f9;
  position: relative;
  margin: 10px;
  font-size: 17px;
}

.contact-page {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  text-decoration: underline;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-size: 1rem;
}

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

input:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
}

textarea {
  resize: none;
  height: 100px;
}

button {
  width: 100%;
  background-color: #007bff;
  color: #fff;
  border: none;
  padding-block: 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

button:hover {
  background: #0056b3;
}

#success {
  min-width: 250px;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 12px 16px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.4s ease, top 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#success.show {
  opacity: 1;
  top: 40px;
}

.error {
  color: red;
  margin-top: 5px;
  display: block;
}

.navbar {
  position: absolute;
  top: 2px;
}

.navbar ul {
  display: flex;
  gap: 10px;
}

.navbar ul li a {
  color: black;
}

.navbar ul li a:hover {
  color: hsl(51, 100%, 49%);
}
