body {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.4705882353);
  color: #ffd600;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1500&q=80") no-repeat center center fixed;
  background-size: cover;
}

h1, h2, h3 {
  color: rgb(255, 222.2, 51);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

a, p {
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

header {
  background-color: #222;
  color: #ffd600;
  padding: 20px;
  text-align: center;
}
header nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 600px) {
  header nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
header nav a {
  color: #ffd600;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
header nav a:hover {
  color: rgb(255, 222.2, 51);
  text-decoration: underline;
}

main {
  max-width: 1000px;
  margin: 20px auto;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #ffd600;
}

footer {
  background-color: #222;
  color: #ffd600;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

.cta-btn, button {
  background-color: #ffd600 !important;
  color: #111 !important;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}
.cta-btn:hover, button:hover {
  background-color: rgb(255, 222.2, 51) !important;
  color: #111 !important;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.4s;
}
.video-container iframe:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transform: scale(1.01);
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
form input, form textarea, form button {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/*# sourceMappingURL=main.css.map */
