@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap');

:root {
    --container-bg-color: #333;
    --left-button-hover-color: rgba(184, 202, 198, 0.726);
    --right-button-hover-color: rgba(184, 202, 198, 0.726);
    --hover-width: 62%;
    --other-width: 38%;
    --speed: 800ms;
  }
  
  html, body {
    padding:0;
    margin:0;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }
  

  .logo{
    display: flex;
    width: 100%;
    margin-top: 3%;
    position: absolute;
    background-color: transparent;
    color: white;
    font-family: "Nothing You Could Do";
    font-size: 100px;
    text-align: center;
    justify-content: center;
    z-index: 1;
  }


  a:link{
    text-decoration: none !important;
  }
  
  .button {
    display: block;
    position: absolute;
    left: 50%;
    top: 85%;
    height: 3rem;
    width: 13rem;
    text-align: center;
    line-height: 3rem;
    color: #fff;
    border: #fff solid 0.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transform: translateX(-50%);
  }

  .split.left .button:hover {
    background-color: var(--left-button-hover-color);

  }
  
  .split.right .button:hover {
    background-color: var(--right-button-hover-color);
  }
  
  .container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--container-bg-color);
  }
  
  .split {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
  }
  
  .split.left {
    left:0;
    background: linear-gradient(
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3)
    ), url('pics/IMG_4724.jpg') center center no-repeat;
    background-size: cover;
  }
  
  .split.left:before {
    position:absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--left-bg-color);
  }
  
  .split.right {
    right:0;
    background: linear-gradient(
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3)
    ), url('pics/16.jpg') center center no-repeat;
    background-size: cover;
  }
  
  .split.right:before {
    position:absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--right-bg-color);
  }
  
  .split.left, .split.right, .split.right:before, .split.left:before {
    transition: var(--speed) all ease-in-out;
  }
  
  .hover-left .left {
    width: var(--hover-width);
  }
  
  .hover-left .right {
    width: var(--other-width);
  }
  
  .hover-left .right:before {
    z-index: 2;
  }
  
  
  .hover-right .right {
    width: var(--hover-width);
  }
  
  .hover-right .left {
    width: var(--other-width);
  }
  
  .hover-right .left:before {
    z-index: 2;
  }
  
@media(max-width: 800px) {
  .button {
    top: 80%;
  }
  .button {
    width: 8.5em;
    font-size: 0.9rem;
  }
  .logo{
    font-size: 75px;
    margin-top: 8%;
  }  

}
