
    @font-face {
      font-family: 'Zen Dots';
      src: url('../ZenDots-Regular.woff2') format('woff2');
    }


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: 'Zen Dots', sans-serif;
}

body {
  background: #000;
  color: #fff;
  font-family: sans-serif;
}

/* HEADER */
.header {
    position: absolute;
      top: 0;
      width: 100%;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
}

.btn-index {
      position: absolute;
      left: 30px;
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
    }

.logo {
  width: 90px;
}

.logo img {
  width: 100%;
}

/* SECCIÓN TEXTO */
.info {
  margin: auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:  linear-gradient(135deg, rgba(0, 0, 0, 0.676), rgba(0, 0, 0, 0.3)),
    url('../img/fondo-tres.jpg') center/cover no-repeat;
  
      background-attachment:content;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
 
}

.info-contenido {
  max-width: 800px;
    width: 90%;
}

.info h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.info p {
  color: #fff8e7;
  line-height: 1.6;
  font-size: 20px;
  text-align: left;
}

/* BOTÓN */
.btn-minimal {
  margin-top: 30px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
 
}

a{
   text-decoration: none;
}

.btn-minimal:hover {
  background: #fff;
  color: #000;
}

/* BANNER */
.banner {
  height: 300px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner h2 {
  color: #555;
  font-size: 18px;
  letter-spacing: 2px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .info-contenido {
    width: 80%;
}



  .info p {
    font-size: 15px;
  }


 

  
}

@media (min-width: 200px) and
 ( max-width: 480px) {

  .info-contenido {
    width: 90%;
    margin-top: 20%; 
}

  .info h1 {
    font-size: 20px;
  }

  .info p {
    font-size: 13px;
  }

 .logo {
    width: 70px;
  }     


  
}
