body {
  background-color: #fff;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 767px) {
  .container {
    grid-template-columns: 1fr 1fr;
  }
}
.container::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: url("./img/background.jpg") 0 0 repeat;
  transform: rotate(30deg);
}

.panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 300px rgba(0, 0, 0, 0.6) inset;
  min-height: 50vh;
}
@media only screen and (min-width: 767px) {
  .panel {
    min-height: 100vh;
  }
}
.panel::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.panel-inner {
  position: relative;
  z-index: 2;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 280px;
  justify-content: center;
  color: #fff;
}
@media only screen and (min-width: 767px) {
  .panel-inner {
    padding: 0 40px 40px 40px;
  }
}
.panel-inner p {
  padding: 0 10%;
}
.panel-inner img {
  width: 180px;
  margin: 0 auto 20px;
  height: auto;
}
@media only screen and (min-width: 767px) {
  .panel-inner img {
    width: 280px;
  }
}

.button {
  display: Inline-block;
  font-weight: bold;
  text-decoration: none;
  padding: 20px;
  color: #fff;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
}
.button:hover {
  background-color: #fff !important;
  color: #000;
}

.rottenTomatoes {
  background-color: rgba(254, 0, 0, 0.9019607843);
}
.rottenTomatoes .button {
  background-color: #061427;
}

.communityCinemas {
  background-color: rgba(6, 20, 39, 0.9019607843);
}
.communityCinemas .button {
  background-color: #fe0000;
}/*# sourceMappingURL=style.css.map */