html {
  scroll-behavior: smooth;
}

h2 {
  font-size: 36px;
  text-align: center;
  margin: 16px 0px 60px 0px;
  color: rgb(41, 41, 43);
}

.hidden{
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  align-content: center;

}

body {
  line-height: 1.5;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  background: #ebe9fd;
}


.home-page,
.movies-section,
.popular-movies,
.login-section,
.register-section,
.user-container {
  min-height: 84.4vh;
}



footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(rgba(8, 1, 20, 0.6), rgba(42, 8, 94, 0.9));
  background-position: center;
  background-size: cover;
  padding: 1.1rem;
  position: relative;
}

footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/header-img.png"); 
  opacity: 0.6;
  z-index: -1;
}

footer p {
  font-size: 1rem;
  color: #cac7ff;
}

::-webkit-scrollbar {
  width: 0.6rem;
  height: 0.6rem; /* this doesnt work for some reason */
  background: rgba(0,0,0,.1);
}

::-webkit-scrollbar-thumb {
  background-color: #8e47f8;
  border-radius: 4px;
}