*{
    margin: 0;
    padding: 0;
  }
body{
    font-family: 'Netflix Sans', sans-serif;
    background-color: #111;
}

.nav{
    position: fixed;
    top: 0;
    padding: 20px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    transition-timing-function: ease-in;
    transition: all .5s;
  }
  .nav.active{
    background-color: #111;
  }
  .nav__left{
    margin-left: 10px;
  
  }
  .nav_logo{
    width: 120px
  }
  .nav__right{
    position: fixed;
    right: 20px;
    display: flex;
    margin-right: 10px;
  }
  .nav_avatar{
    width: 35px;
  }
  #banner{
    color: white;
    object-fit: contain;
    height: 100vh;
    /*height:1500px;*/
    /*background-image: url(../img/iHSwvRVsRyxpX7FE7GbviaDvgGZ.jpg);*/
    background-position: center center;
    background-size: cover;
  }
  .banner__contents{
    margin-left: 70px;
    padding-top: 350px;

  
  }
  .banner__title{
    font-size: 3em;
    font-weight: 800;
    text-shadow: 0px 2px 4px #000;
  }
  .banner__description{
    line-height: 1.5;
    font-size: 1.2em;
    max-width: 1200px;
    text-shadow: 0px 2px 4px #000;
  }
#recomendaciones img{
  max-height: 300px;
}
.resaltar:hover{
  cursor: pointer;
  box-shadow: 0px 3px 8px #ccc;
}

