@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

:root{
  --primary:#E50914;
  --secondary:#141414;
  --text:#AAA;
  --hover:#fff;
} 

/*--== General ==--*/

*{
  margin:0;
  padding:0;
  box-sizing: border-box;
}

body{
  background: var(--secondary);
  font-family:'Roboto', sans-serif;
}

/*--== Header ==--*/

#background-image{
  width: 100%;
  margin: auto;
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,1)100%), url('../assets/images/capas/tvd3.jpg') ;
  background-size: cover;
  background-repeat: no-repeat;
}

header .container{
  width: 95%;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

}

header .logo{
  font-family: 'Bebas Neue', cursive;
  color: var(--primary);
  font-size: 40px;
  cursor: pointer;
}

header nav a{  
  margin-right: 10px;
  text-decoration: none;
  color:var(--text);
  font-weight: 600;
  transition:0.3s ease all;
}

header nav a:hover{
  color: var(--hover);
}

/* --== Main ==-- */

main{
  color: white;
}

main .container{
  margin-top: 10%;
  margin-bottom: 5%;
}

.main-movie{
  width: 100%;
  font-size: 16px;
  
  height: 600px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

main .title{
  font-size: 40px;
}

.description, .title{
  margin-left: 50px;
}

main .description{
  width: 60%;
  margin-top: 10px;
  margin-bottom: 30px;
}

.buttons{
  margin-left: 50px;
  
}

.fas{
  margin-right: 10px;
}


.button{  
  background-color: rgba(90, 90, 90, 0.6);
  color: white;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  border: none;
  border-radius: 5px;

  padding: 15px 25px;
  
  margin-right: 15px;

  transition: 0.3s ease all;
}

.button:hover{
  background-color: rgba(255,255,255,0.80);
  color: black;
  cursor: pointer;
}

/*--== Carousel ==--*/

.carousel-title{
  color: white;
  margin-bottom: 20px;
}
.carousel-series{
  margin: auto;
  width: 95%;
}

.box-movie{
  height: 200px;
  width: 100%;
  border-radius: 5px;
  display: block;
  transition: 0.4s;
}

.box-movie:hover{
  opacity:0.5;
  cursor: pointer;
}
