body {
  margin: 0;
  font-family: "Arima", cursive;
  background-image: url(../images/upscalemedia-transformed\ \(1\).jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(2px);
  color: white;
}

/* CONTAINER */
.container {
  text-align: center;
  padding: 80px 20px;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
  margin: auto;
}

input,
textarea {
  padding: 12px;
  border: none;
  outline: none;
  font-size: 16px;
  border-radius: 6px;
}

textarea {
  height: 100px;
}

button {
  padding: 12px;
  background: red;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 6px;
}

button:hover {
  background: orange;
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);

  display: none;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #111;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

.modal-content h2 {
  color: orange;
}

/* FOOTER LINKS */
footer {
  margin-top: 200px;
  text-align: center;
  padding: 40px;
}

.links a {
  margin: 0 10px;
  color: #ccc;
  text-decoration: none;
}

.links a:hover {
  color: red;
}
