@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: rgb(228, 117, 37);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  font-family: montserrat;
}

.container {
  width: 550px;
  height: 450px;
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

.header h2 {
  font-weight: 400;
  color: #fff;
}

.main-content {
  width: 100%;
  height: 300px;
  padding: 50px 40px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 25px 31px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically centers content */
  align-items: center; /* Horizontally centers content */
  /* gap: 15px; */
}

.text-area {
  text-align: center;
  font-size: 25px;
  color: #262626;
  line-height: 1.5;
}

.main-content .movie {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: red;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
}

.main-content .button-area {
  display: grid;
  place-items: center;
  margin-top: 20px;
  padding: 10px 0;
}

.button-area .btn button {
  background-color: #262626;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 12px 15px;
}

.button-area .btn button:hover {
  background-color: red;
}
.button-area .btn button:active {
  background-color: gray;
}
