.imageWrapper {
    position: relative;
    width: 600px;
  }
  
  #website {
    position: relative;
    z-index: 1;
    width: 1000px;
    max-width: 100%;
  }
  
  #popup {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 1000px;
    max-width: 100%;
    pointer-events: none;
    opacity: 0;
  }

  .main {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 48px;
    color: #1a202c;
  }

  p {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    color: #1a202c;
  }

  button {
    color: white;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    background-color: #16a085;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  button:hover {
    background-color: #44337a;
    cursor: pointer;
  }

  @media (max-width: 768px) {
  .main {
    flex-direction: column;
    text-align: center;
  }

  .imageWrapper {
    width: 100%;
  }

  h1 {
    font-size: 36px;
  }

}