body {
    font-family: 'Montserrat', sans-serif;
}

/* Split the screen in half */
.split {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    padding-top: 20px;
  }
  
  /* Control the left side */
  .left {
    left: 0;
    background-color: #111;
    background-image: url("img/drone-bg.png");
  }
  
  /* Control the right side */
  .right {
    right: 0;
    background-color: red;
    background-image: url("img/labels-bg.png");
  }
  
  /* If you want the content centered horizontally and vertically */
  .centered {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  
  /* Style the image inside the centered container, if needed */
  .centered img {
    width: 150px;
    border-radius: 50%;
  }

  .website-title {
      font-size: 1.8rem;
      color: orangered;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      width: max-content;
  }

  .visit-website {
    background-color: orangered;
    border: none;
    color: white;
    padding: 14px 28px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition-duration: 0.4s;
  }

  .visit-website:hover {
      cursor: pointer;
      box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  }

  @media screen and (max-width:600px) {
      .split {
        height: 50%;
        width: 100%;
        position: fixed;
        z-index: 1;
        left: 0;
        overflow-x: hidden;
        padding-top: 20px;
      }

      .left {
        top: 0;
        background-color: #111;
        background-image: url("img/drone-bg.png");
        background-size: cover;
      }
      
      /* Control the right side */
      .right {
        top: 50%;
        background-color: red;
        background-image: url("img/labels-bg.png");
        background-size: cover;
      }
  }