* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Diphylleia", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  text-align: center;
  font-family: "Diphylleia", serif;
  font-weight: 500;
  font-style: normal;
}

body {
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTN-DI5OjSg5PRHNB-OrvHqEpdahmcanWiB-jnTSuaIXQ&s);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
}

#movies-container {
  display: grid;
  justify-content:center;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.movie-card {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.24);
  margin: 35px;
  padding: 5px;
  width: 240px;
  justify-self: center;

  background-color: #dc6b19;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
}

.poster-image {
  width: 100%;
  border-radius: 7px;
}


.h2 {
  margin-bottom: 10px;
}

.search {
  width: 100%;
  justify-content: center;
  padding: 20px 0;
  border-bottom: 1px solid black;

  font-family: "Diphylleia", serif;
  font-weight: 800;
  font-style: normal;
  height: 70px;
  text-align: center;
}

#search-input {
  margin-left: 5px;
  min-width: 200px;
  padding: 3px 10px;
}

.search label {
  font-size: 22px;
}
