*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body{
  width: 100%;
  height: 100vh;
  background: url(../img/fondo_body.png) no-repeat center center/ cover  ;
  background-attachment: fixed; /* Aquí se mantiene fijo el fondo */
  font-family: "Open Sans", sans-serif;
}
html {
  cursor: url(../img/cursor.png), auto;
}

h1,h2{
  font-family: "Belleza", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.linea-tituloI{
  position: fixed;
  left: 0;
  background-color: #fff;
  height: 35px;
  width: 2px;
}

.linea-tituloB{
  position: fixed;
  bottom: 0;
  left: -20px;
  background-color: #fff;
  height: 2px;
  width: 180px;
}

#preloader {
  position: fixed;
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: #171717;
  z-index: 9999;
}
@keyframes carga {
  0% {
     transform: scale(1);
  }

  50% {
     transform: scale(1.5);
  }

  100% {
     transform: scale(1);
  }
}
#avion {
  width: 100px;
  animation: carga 1s ease-in-out infinite;
}