* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-color: #dc3545 #f4f4f4;
}
header {
  background-image: url(./../imgs/home3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  background-size: cover;
}
.nav-link.active {
  border-bottom: 2px solid red;
}
@media (max-width: 991px) {
  .navbar-toggler {
    order: 2;
  }
  .d-lg-none:first-child {
    order: 1;
  }
  .d-lg-none:last-child {
    order: 3;
  }
}
.navbar a {
  font-weight: 500;
}
.navbar a:hover {
  border-bottom: 2px solid red;
}
.navbar-nav {
  column-gap: 5rem;
}
/* ----------------- */
.Spider-Man {
  font-size: 4rem;
  font-weight: 700;
  width: 60%;
}
@media (max-width: 791px) {
  .Spider-Man {
    width: 100%;
    font-weight: 500;
    font-size: 2rem;
  }
}
/* ----- */
.movie-card img {
  width: 100%;
  height: 70%;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.movies-container {
  gap: 20px;
}
.movie-card {
  width: 200px;
}
.movie-card:hover img {
  transform: translateY(-20px);
}

.social-icon:hover {
  background-color: red !important;
  transform: scale(1.1);
}

.social-icon:hover i {
  color: white !important;
}
.social-icon {
  text-decoration: none !important;
  outline: none !important;
}
.navbar-custom {
  width: 100%;
  transition: background-color 0.3s ease-in-out;
}

.navbar-scrolled {
  background-color: white !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
