.lobster-regular {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body {
  background-color: #0b1a33;
  color: #f5f5f5;
  font-family: 'Merriweather', serif;
  margin: 0;
  padding: 0;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #d4af37;
}

.logo{
  width: 150px;
  height: auto;
}

.header-center h1 {
  color: #d4af37;
  font-size: 2em;
  margin: 0;
}

.header-center p {
  color: #f5f5f5;
  font-style: italic;
}

/* Menú */
.menu {
  background-color: #0b1a33;
  border-bottom: 2px solid #d4af37;
  text-align: center;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  display: inline-block;
  margin: 0 15px;
}

.menu a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
}

.menu a:hover {
  text-decoration: underline;
}

/* Formulario */
.formulario {
  background-color: #121e3c;
  border: 2px solid #d4af37;
  width: 80%;
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 8px;
}

.formulario h2 {
  color: #d4af37;
  text-align: center;
}

.formulario label {
  display: flex;
  margin-top: 10px;
  align-items: center;
}

.checkbox {
  height: 20px;
  width: 20px !important;
  margin-right: 15px;
}

.formulario input,
.formulario select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: none;
  border-radius: 4px;
}

button {
  background-color: #d4af37;
  color: #0b1a33;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

button:hover {
  background-color: #b8962e;
}

/* Footer */
.footer {
  background-color: #0b1a33;
  color: #d4af37;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  border-top: 2px solid #d4af37;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer a {
  color: #d4af37;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px; 
  border-top: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  padding: 5px 0;
  color: #d4af37;
  
}