body{
  width: 100%;
  position: relative;
  background: #181818;
  font-family: 'roboto', sans-serif;
}

.navbar{
  width: 100%;
  height: 60px;
  position: fixed;
  top:0;
  z-index: 9;
  background: #000;
  padding: 0 2.5vw;
  display: flex;
  align-items: center;
}

.join-box{
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-left: auto;
}

.join-msg{
  color:#fff;
  text-transform: uppercase;
}

.logo{
  height: 80px;
}

.btn{
  border: 1px solid #fff;
  border-radius: 2px;
  background: none;
  color:#fff;
  height: 35px;
  padding: 0 10px;
  margin-left: 10px;
  text-transform: uppercase;
  cursor: pointer;
  
}

.btn a {
  text-decoration: none;
  color: #fff;
}

.join-btn{
  background: #dd0e15;
  border-color: #dd0e15;
}

.join-btn:hover{
  background: #f3555a;

}

.login-btn:hover {
  background-color: #dd0e15;
  border-color: #dd0e15;
}
.main{
  position: relative;
  margin-top: 60px;
  width: 100%;
  padding:20px 2.5vw;
  color:#fff;
}

.heading{
  text-transform: capitalize;
  font-weight: 900;
  font-size: 50px;
}

.info{
  width: 50%;
  font-size: 20px;
  margin-top: 10px;
}

.movie-list{
  width: 100%;
  height: 250px;
  margin-top: 40px;
  position: relative;
}

.movie-category{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.movie-container{
  width: 100%;
  height: 250px;
  align-items: center;
  overflow-x: auto; 
  overflow-y: hidden;  
  scroll-behavior: smooth;
  display: flex;
}

.movie-container::-webkit-scrollbar{
  display: none;
}

.movie-category::-webkit-scrollbar{
  display: none;
}

.movie{
  flex:0 0 auto;
  width: 24%;
  height: 200px;
  text-align: center;
  margin-right: 10px;
  margin-top: 30px;
  cursor: pointer;
  position: relative;
}

.movie img{
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.movie p{
  text-transform: capitalize;
  height: 20px;
  overflow: hidden;
}

.pre-btn,
.next-btn{
  position: absolute;
  height: 200px;
  top:50%;
  transform: translateY(-50%);
  width: 2.5vw;
  background: #181818;
  border:none;
  outline: none;
  opacity: 0.5;
}

.pre-btn:hover,
.next-btn:hover{
  opacity: 1;
}

.pre-btn{
  left: -2.5vw;
}


.next-btn{
  right: -2.5vw;
}

.pre-btn img,
.next-btn img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}