body {
  background-color: #f5f5f5; /* Light gray background */
  font-family: "Georgia", serif; /* Traditional, elegant font */
  color: #222; /* Dark gray for text for more contrast */
  margin: 0;
}

.center {
  text-align: center;
}

img {
  height: 500px;
  border-radius: 8px;
}

iframe {
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  min-height: 300px;
  min-width: 450px;
}

.focus-on-mouseover {
  transition: height 0.2s, filter 0.2s;
}

.focus-on-mouseover:hover {
  height: 520px;
  filter: brightness(110%);
}

.animated {
  animation-fill-mode: both;
}

.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 25px;
}

.film-tile {
  padding: 40px;
  text-align: left;
  transition: filter 0.2s;
  min-height: 300px;
  min-width: 450px;
  flex: 0 1 500px;
  background-color: #fff; /* White background for contrast */
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.film-tile:hover {
  filter: brightness(95%);
}

a {
  text-decoration: none;
  color: #3c3c3c; /* Darker gray for better visibility and contrast */
}

.film-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  .film-row {
    flex-direction: column;
  }
  .film-tile {
    flex: 1 1 auto;
  }
}

.film-title {
  font-weight: bold;
  font-size: 34px;
}

.film-author {
  font-style: italic;
}

.film-info {
  margin-bottom: 15px;
}

.info-row {
  margin: 20px 100px;
  font-size: 20px;
  text-align: left;
}

.button {
  min-width: 300px;
  min-height: 60px;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(130, 130, 130, 1) 0%,
    /* Dark gray start */ rgba(160, 160, 160, 1) 100% /* Lighter gray end */
  );
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(160, 160, 160, 0.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  overflow: hidden; /* Ensures the :before effect doesn't overflow */
}
.button::before {
  content: "";
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #aaa; /* Light gray border */
  box-shadow: 0 0 60px rgba(130, 130, 130, 0.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}

.button:hover,
.button:focus {
  color: #fff;
  transform: translateY(-6px);
}

.button:hover::before,
.button:focus::before {
  opacity: 1;
}

.button::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid #aaa; /* Light gray */
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.button:hover::after,
.button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.top-nav {
  background-color: #e0e0e0; /* Darker gray for the navigation */
  border-bottom: 1px solid #cfcfcf; /* Slightly lighter gray border */
  display: flex;
  align-items: center;
  padding: 20px;
}

.top-nav .element {
  color: #333; /* Dark gray text */
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
  margin: 0px 10px;
  border-radius: 10px;
  background: none;
  border: none;
}

.top-nav .element:hover {
  background-color: #cfcfcf; /* Light gray on hover */
  color: black;
}

.dropdown-content {
  display: none;
  position: absolute;
  margin-top: 10px;
  margin-left: 10px;
  background-color: #e0e0e0;
  color: #222;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 1px solid #bfbfbf;
  border-radius: 10px;
}
.dropdown-content a {
  color: #222;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-radius: 10px;
}
.dropdown-content a:hover {
  background-color: #bfbfbf;
  color: black;
}

.dropdown-show {
  display: block;
}

.paragraph {
  text-indent: 20px;
  text-align: justify;
  line-height: 1.6;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 800px) {
  .top-nav a.logo {
    font-size: 18px;
  }
  .top-nav a {
    font-size: 15px;
  }
}
