* {
    box-sizing: border-box;
  }

  @font-face {
    font-family: neutra;
    src: url(images/neutra_text_tf_light.otf);
  }

  body {
    font-family: neutra;
    margin: 0;
    overflow: hidden;
    height: 100vh;
  }

  .container {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .area {
    position: absolute;
    transition: 1s ease;
    width: 50%;
    height: 100%;
    overflow: hidden;
  }
  .area.left {
    left: 0;
    background: url(images/alkimia/landing_page_image_andorra.jpg) no-repeat center center/cover;
  }
  .area.left::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(176, 156, 149, 0.8);
  }
  .area.right {
    right: 0;
    background: url(images/alkimia/landing_page_image_monaco.jpg) no-repeat center center/cover;
  }
  .area.right::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(64, 69, 96, 0.8);
  }
  .area__headerL {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 3rem;
    white-space: nowrap;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
  }
  .area__headerR {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 3rem;
    white-space: nowrap;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
  }
  .area__btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 15rem;
    background: transparent;
    font-size: 14px;
    font-weight: bold;
    color: white;
    border: 2px solid white;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 20px 40px;
  }
  .area__imgL {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    width: 19rem;
    padding: 0px 0px;
  }

  .area__imgR {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    width: 19rem;
    padding: 0px 0px;
  }

  .area__btn#ps5:hover {
    background-color: rgba(87, 84, 236, 0.7);
    border-color: rgba(87, 84, 236, 0.7);
  }
  .area__btn#xbox:hover {
    background-color: green;
    border-color: green;
  }
  
  .hover-left .left {
    width: 60%;
  }
  .hover-left .right {
    width: 40%;
  }
  
  .hover-right .left {
    width: 40%;
  }
  .hover-right .right {
    width: 60%;
  }
  
  @media (max-width: 800px) {
    .area__header {
      font-size: 2rem;
      top: 30%;
    }
    .area__btn {
      padding: 1.2rem;
      width: 12rem;
    }
    .area__imgL {
      padding: 1.2rem;
      width: 13rem;
    }
    .area__imgR {
      padding: 1.2rem;
      width: 13rem;
    }
  }