body {
  background-color: white;
  font-family: monospace;
  color: black;

  text-align: center;
  position: relative;
  margin: 0;
}

::placeholder {
  color: black;
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: .8em;
  font-weight: 800;
}

p {
  line-height: 1.6;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1em;
}

footer {
  font-size: small;
}

button {
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 48px;
  background: black;
  color: white;
  font-size: 0.8em;
  font-weight: bold;
  cursor: pointer;
  gap: 10px;
  max-width: 400px;
  width: 95%;
  box-sizing: border-box;
  margin: 1rem auto;
  display: block;
}

.btn-contacto {
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 48px;
  background: white;
  color: black;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  gap: 10px;
  max-width: 400px;
  width: 95%;
  box-sizing: border-box;
  margin: 1rem auto;
  display: block;
}

.contenido {
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.visually-hidden {
  display: none;
}

form label,
form input,
form textarea {
  display: block;
  width: 95%;
  max-width: 600px;
  margin: 1rem auto 0.5rem auto;
  box-sizing: border-box;
}

form input,
form textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1.4rem;
  resize: vertical;
  font-family:"Brush Script MT", cursive;
  border-radius: 0;
  outline: 5px solid black;
  width: 95%;
  max-width: 400px;
}

form textarea {
  min-height: 50px;
}

.servicios-lista {
  list-style: none;
  padding: 0;
  text-align: center;
}

.servicios-lista li {
  font-size: 1em;
  margin-bottom: 10px;
}

#logo-servicios,
#logo-contacto {
  cursor: pointer;
}