/* static-styles.css */

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  background-color: #0F0F0F;
}

#wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-size: 2.5em;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

section {
  padding: 40px 0;
}

p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #fff;
}

h4 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #fff;
}

/* Colores de fondo de secciones */
.s_title {
  background-color: #0F0F0F;
}

.s_text_block {
  background-color: #0F0F0F;
}

.email{
  font-size: 1.3em;
  color: #fff;
}
/* Estilos responsive */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  h4 {
    font-size: 1.3em;
  }

  p {
    font-size: 1em;
  }

  section {
    padding: 20px 0;
  }
}