@font-face {
  font-family: "Agency FB";
  src: url("../font/AgencyFB-Reg.eot");
  src: url("../font/AgencyFB-Reg.eot?#iefix") format("embedded-opentype"), url("../font/AgencyFB-Reg.woff2") format("woff2"), url("../font/AgencyFB-Reg.woff") format("woff"), url("../font/AgencyFB-Reg.ttf") format("truetype"), url("../font/AgencyFB-Reg.svg#AgencyFB-Reg") format("svg");
  font-weight: normal;
  font-style: normal; }
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

body {
  font-family: "Agency FB";
  background: linear-gradient(90deg, #ff9727, #ff5427);
  padding: 5rem; }

p {
  color: #f9f9f9; }

br {
  margin-bottom: 1.5rem; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ff8d27;
  margin-bottom: 1.5rem;
  font-weight: 100; }

.d-none {
  display: none; }

.d-block-modal {
  display: flex;
  justify-content: center;
  align-items: center; }

.spinner {
  width: 5rem;
  height: 5rem;
  background-color: transparent;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto; }
  .spinner__circle {
    height: 0.6rem;
    width: 0.6rem;
    border-radius: 50%;
    background-color: #ff8727;
    animation: circle 1s infinite; }
  .spinner__circle:nth-child(1) {
    animation-delay: 0.2s; }
  .spinner__circle:nth-child(2) {
    animation-delay: 0.5s; }
  .spinner__circle:nth-child(3) {
    animation-delay: 0.8s; }
  .spinner__circle:not(:last-child) {
    margin-right: 1rem; }

.error {
  font-size: 1.8rem;
  text-align: center;
  color: #ff9727; }

.modal {
  position: fixed;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); }
  .modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    background-color: #ff8d27;
    color: #1f1f1f;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    cursor: pointer;
    transition: all 0.7s; }
    .modal-close:hover {
      opacity: 0.7; }
  .modal-img {
    display: block;
    width: 75%; }

.container {
  max-width: 120rem;
  margin: auto; }

.header {
  background-color: #171717;
  padding: 2.5rem 1.3rem; }
  .header__container {
    display: flex;
    align-items: center; }
  .header__logo {
    width: 4.3rem;
    margin-right: 2.5rem; }
  .header__form {
    display: flex; }
    .header__form-search {
      font-family: "Agency FB";
      font-size: 1.8rem;
      text-align: center;
      padding: 0.3rem;
      color: #0e0e0e;
      background-color: #b7b7b7;
      width: 25rem;
      margin-right: 2.5rem;
      border-radius: 2.5rem;
      outline: none;
      border: none;
      transition: all 0.7s; }
      .header__form-search:hover {
        background-color: #cacaca; }
      .header__form-search:focus {
        width: 33rem;
        background-color: #dcdbdb; }
    .header__form-submit {
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: "Agency FB";
      font-size: 1.8rem;
      color: #ff8d27;
      background-color: transparent;
      width: 3.3rem;
      height: 3.3rem;
      border: 1px solid #ff8d27;
      border-radius: 50%;
      outline: none;
      transition: all 0.7s; }
      @media (hover: none) {
        .header__form-submit {
          background-color: #ff8d27;
          color: #171717;
          cursor: pointer; } }
      @media (hover: hover) {
        .header__form-submit:hover {
          background-color: #ff8d27;
          color: #171717;
          cursor: pointer; } }

.game {
  position: relative;
  background: url("../img/pattern.png") #1f1f1f;
  padding: 3rem 1.3rem;
  min-height: 100vh; }
  .game__title-container {
    display: flex;
    align-items: center; }
  .game__heading {
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 0;
    color: #ff8d27; }
  .game__score {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1.5rem;
    font-size: 1.8rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #ff8d27;
    color: #282727;
    border-radius: 50%; }
  .game__score::after {
    position: absolute;
    content: "";
    height: 3.5rem;
    width: 3.5rem;
    border: 1px solid #ff8d27;
    background-color: transparent;
    border-radius: 50%;
    animation: score 1s infinite; }
  .game__list {
    padding-top: 2.5rem;
    list-style: none;
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    font-size: 1.8rem;
    color: #747474; }
    .game__list-item {
      position: relative;
      padding-left: 1rem; }
    .game__list-item:not(:last-child) {
      margin-bottom: 1rem; }
    .game__list-item::before {
      position: absolute;
      left: 0;
      top: 1rem;
      content: "";
      width: 0.4rem;
      height: 0.4rem;
      border-radius: 50%;
      background-color: #ff8d27;
      margin: 0; }
  .game__description {
    font-size: 1.8rem;
    padding-top: 2.5rem;
    text-align: justify;
    color: #f9f9f9; }
    .game__description p:not(:last-child) {
      margin-bottom: 1.5rem; }

.gallery {
  padding-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, 12rem);
  justify-content: center;
  gap: 2rem; }
  .gallery__item {
    position: relative;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    cursor: pointer; }
    .gallery__item-img {
      width: 100%;
      height: 100%;
      border: 2px solid rgba(255, 151, 39, 0.3);
      border-radius: 50%; }
    .gallery__item-overlay {
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #ffcea3, #fc8821);
      opacity: 0.3;
      border-radius: 50%;
      top: 0;
      left: 0;
      transition: 0.7s; }
      @media (hover: hover) {
        .gallery__item-overlay:hover {
          opacity: 0.65; }
        .gallery__item-overlay:hover .gallery__item-overlay-img {
          z-index: -2;
          opacity: 1; } }
      @media (hover: none) {
        .gallery__item-overlay {
          opacity: 0.45; }
        .gallery__item-overlay .gallery__item-overlay-img {
          opacity: 1; } }
      .gallery__item-overlay-img {
        width: 5.3rem;
        opacity: 0;
        transition: 0.7s; }

.trailer {
  max-width: 62rem;
  padding-top: 4rem;
  margin-left: auto;
  margin-right: auto; }
  .trailer__video {
    width: 100%; }

.footer {
  background-color: #171717;
  padding: 2rem;
  text-align: center;
  font-size: 1.4rem; }
  .footer__link {
    text-decoration: none;
    color: #ff8d27; }
    @media (hover: none) {
      .footer__link {
        text-decoration: underline; } }
    @media (hover: hover) {
      .footer__link:hover {
        text-decoration: underline; } }

@keyframes score {
  0% {
    transform: scale(1);
    opacity: 0; }
  50% {
    transform: scale(1.2);
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 0; } }
@keyframes circle {
  0% {
    transform: translateY(0rem); }
  50% {
    transform: translateY(0.8rem); }
  100% {
    transform: translateY(0rem); } }
@media only screen and (max-width: 64em) {
  body {
    padding: 0; } }
@media only screen and (max-width: 37.5em) {
  .header__container {
    display: flex;
    flex-direction: column;
    align-items: center; }
  .header__logo {
    margin-right: 0; }
  .header__form {
    display: flex;
    flex-direction: column;
    align-items: center; }
    .header__form-search {
      margin-right: 0;
      margin-top: 2rem;
      margin-bottom: 2rem;
      width: 23rem; }
      .header__form-search:focus {
        width: 30rem; } }

/*# sourceMappingURL=styles.css.map */
