* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  background-color: rgb(253, 242, 204);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0;
}

header {
  background-color: rgb(15, 88, 60);
  border-bottom: 1px solid rgba(107, 115, 123, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding: 0 10px;
}
header .container {
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: center;
  gap: 12px;
}
header h1 {
  color: white;
}
header .header-logo {
  width: 4em;
  height: auto;
}

main {
  flex-grow: 1;
}

footer {
  background-color: rgb(15, 88, 60);
  padding: 20px;
  border-top: 1px solid rgba(107, 115, 123, 0.4);
  margin-top: 40px;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  border: 1px solid rgba(107, 115, 123, 0.4);
  position: relative;
  width: 100%;
}
.hero .hero-content {
  padding-top: 20px;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .hero-content-text {
  background-color: white;
  border-radius: 20px;
  padding: 3px 10px;
}
.hero .hero-content-text h1, .hero .hero-content-text h2 {
  color: rgb(15, 88, 60);
}
@media (max-width: 600px) {
  .hero .hero-content-text h1 {
    font-size: x-large;
  }
  .hero .hero-content-text h2 {
    font-size: large;
  }
}
.hero .logo-icon {
  width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero .hero-banner {
  height: clamp(210px, 28vw, 250px);
  overflow: hidden;
  position: relative;
  width: 105%;
}
.hero .hero-banner img {
  position: absolute;
  left: 0;
  top: -20;
  min-height: 100%;
  width: 100%;
  height: auto;
  filter: blur(5px);
}
@media (max-width: 600px) {
  .hero .hero-banner img {
    top: 0;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgb(15, 88, 60);
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: rgb(22.427184466, 131.572815534, 89.7087378641);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 88, 60, 0.3);
}
.btn-primary:active {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .btn-primary {
    width: 100%;
    max-width: 360px;
  }
}

.btn-icon {
  display: inline-flex;
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}
.btn-icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

.btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin: 10px 0;
}
@media (max-width: 600px) {
  .btn-group {
    flex-direction: column;
    padding: 0 10vw;
  }
}

.page-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin: 0 10vw;
}
.page-content h2 {
  color: rgb(15, 88, 60);
  padding-bottom: 10px;
}
.page-content h2::after {
  content: "";
  display: block;
  height: 4px;
  background: rgb(15, 88, 60);
  width: 20%;
  max-width: 120px;
  margin: 4px auto;
}
.page-content img {
  width: clamp(240px, 90vw, 560px);
  height: auto;
}

.rankings {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}
.rankings .ranking h3 {
  margin-bottom: 10px;
}
.rankings .ranking li {
  text-align: left;
}

.movie-chart {
  width: clamp(300px, 80vw, 600px);
  height: auto;
  display: block;
  overflow: visible;
  margin: 10px 0;
}
.movie-chart .grid-lines {
  stroke: #333;
  stroke-width: 0.2;
}
.movie-chart .grid-line-center {
  stroke: #333;
  stroke-width: 2;
}
.movie-chart .label-left {
  text-anchor: end;
}
.movie-chart .label-right {
  text-anchor: start;
}
.movie-chart .label-left, .movie-chart .label-right {
  font-size: 12px;
  font-weight: bold;
}
.movie-chart .bar-right {
  fill: #D73A49;
}
.movie-chart .bar-left {
  fill: #99FF99;
}/*# sourceMappingURL=styles.css.map */