* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  background-color: #111;
  font-family: 'Georgia', serif;
  color: #fff;
}

.overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  text-align: center;
  padding: 20px;
}

.top {
  position: absolute;
  top: 30px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
}

.center h1 {
  font-size: 36px;
  max-width: 800px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.sub {
  font-size: 18px;
  color: #ccc;
}
.contact {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact p {
  margin-bottom: 30px;
  font-size: 18px;
  color: #ccc;
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  background: transparent;
  border: 1px solid #fff;
  padding: 12px;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: #aaa;
}

.contact .checkbox {
  font-size: 14px;
  color: #aaa;
  text-align: left;
}

.contact button {
  width: 100px;
  margin: 20px auto 0;
  padding: 10px;
  background: #fff;
  color: #000;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

.contact button:hover {
  background: #ddd;
}