@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap");

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#main-section {
  background-image: url(/img/background.jpg);
  height: 100vh;
  background-size: cover;
  background-position: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#netflix-logo {
  max-width: 65%;
  height: auto;
}

#main-section h1 {
  font-size: 50px;
}

#button-container {
  display: flex;
}

#watch-now,
#sign-up {
  font-size: 18px;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  width: 150px;
  margin-top: 25px;
  background-color: red;
  color: #fff;
}

#watch-now {
  margin-right: 10px;
}

#sign-up {
  margin-left: 10px;
}

#watch-now:hover,
#sign-up:hover {
  animation-name: change-color;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
#banana {
  padding-top: 100px;
}
@keyframes change-color {
  100% {
    background-color: #fff;
    color: red;
    font-weight: bolder;
  }
}

#modal-heading,
#modal1-heading {
  color: red;
  font-weight: bold;
}

/*Media Queries*/
@media screen and (max-width: 500px) {
  #main-section h1 {
    font-size: 32px;
  }
}

@media screen and (max-width: 420px) {
  #button-container {
    flex-direction: column;
  }
  #watch-now,
  #sign-up {
    margin: 10px 0;
  }
}
