@charset "UTF-8";
@font-face {
  font-family: "Demi";
  /* El nombre que quieras darle a la fuente */
  src: url("demi.otf") format("opentype");
  /* Reemplaza 'ruta-a-tu-fuente' con la ubicación de tu fuente OTF */
}
body {
  font-family: Arial, sans-serif;
  text-align: center;
  /*font-weight: 600;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*align-items: center;
  /*height: 100vh;
  /* Establece la altura del cuerpo al 100% de la ventana gráfica */
}

.responsive {
  position: center;
  width: 10%;
  height: auto;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

::-moz-selection {
  color: #fff;
  background: #2128bd;
}

::selection {
  color: #fff;
  background: #5C3FAC;
}

h1 {
  font-family: Code, monospace;
  color: #003272;
  text-align: center;
  font-size: 35px;
  margin-top: 20px;
}

h2 {
  font-family: Code, monospace;
  color: #606060;
  text-align: center;
  font-size: 25px;
}

Footer {
  font-family: Code, monospace;
  color: #606060;
  text-align: center;
  font-size: 10px;
}

#quoteForm {
  display: inline-block;
  text-align: left;
  max-width: 400px; /* Adjust the maximum width as needed */
  margin: 20px auto; /* Center the form horizontally */
}

#quoteForm label {
  font-family: Arial, sans-serif; /* Use the same font as the body */
  margin-bottom: 20px; /* Adjust the margin bottom as needed */
  /* Other label styles as needed */
}

#quoteForm input[type="number"],
#quoteForm input[type="checkbox"] {
  font-family: Arial, sans-serif; /* Use the same font as the body */
  margin-bottom: 10px; /* Adjust the margin bottom as needed */
  margin-right: 10px; /* Adjust the margin right as needed */
  font-size: 16px; /* Adjust the font size as needed */
  margin-top: 5px;
}

#quoteForm button {
  font-family: Arial, sans-serif; /* Use the same font as the body */
  margin-bottom: 10px; /* Adjust the margin bottom as needed */
  margin-right: 10px; /* Adjust the margin right as needed */
  font-size: 16px; /* Adjust the font size as needed */
}

#quoteOutput {
  font-size: 20px; /* Adjust the font size as needed */
  margin-bottom: 20px; /* Adjust the margin bottom as needed */
}