* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Abel", sans-serif;
    scroll-behavior: smooth;
  }
  body {
      font-family: 'Open Sans', sans-serif;
      background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('../media/Fondos/fondo.jpeg');
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
  }
  .logo img{
    height:100px;
 }
 .nav {
   border-bottom: 1px solid rgba(255, 255, 255, 0.521);
   padding:0 50px;
   display: flex;
   justify-content: space-between;
   margin: 0 10px;
 }
 .nav .config {
    display: none;
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 80px;
  }
  .menu ul {
    list-style: none;
    /* display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center; */
  }
  .menu ul li {
    display: inline-block;
  }
  .menu ul li a {
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: white;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 10px 15px;
    margin: 0 5px;
    transition: 0.5s ease;
  }
  .menu ul li a:hover {
    border-color: white;
  }
  .menu ul li:nth-child(6) a:hover {
    color: black;
    background-color: #60a9ff;
  }
  .menu ul li .button_login {
    color: #fff;
    border: 1px solid #60a9ff;
    background: #00C0FF;
  }
  .menu ul li .button_cerrar {
    padding: 5px;
    font-size: 1.2rem;
    color: #fff;
    border: 1px solid #60a9ff;
    background: #00C0FF;
  }
  header {
      height: 80vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: #fff;
      text-align: center;
     padding: 210px;
  }
  header h1 {
      font-size: 70px;
  }
  header p {
      margin: 20px;
      font-size: 40px;
  }
  header button{
    border: 2px #fff solid;
    color: #000;
    background: none;
    border-radius: 4px;  
    color: #000;
    cursor: pointer;
    padding: 15px 19px;
    
  }
  
  header button:hover{
     background-image: linear-gradient(90deg, #00C0FF 0%, #fff 49%, #00C0FF 80%, #fff 100%);
     animation:slidebg 5s linear infinite;
  }
  header button a {
      font-size: 25px;
    text-decoration: none;
    color: #fff;
}
  
  @keyframes slidebg {
    to {
      background-position:20vw;
    }
  }