.marquee {
    width: 100%;
    /* overflow: hidden; */
    border:1px solid #000000;
    background-color: rgb(246, 255, 0);
    position: fixed;
    left: 0;
    bottom: 0%;
    font-size: 70px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  .marquee2 {
    width: 100%;
    /* overflow: hidden; */
    border:1px solid #000000;
    background-color: rgb(246, 255, 0);
    position: fixed;
    left: 0;
    top: 0%;
    font-size: 70px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  body {
    margin: 10px;
    background: rgb(0, 0, 0);
  }
  
  /* here you can put the common styles for your buttons, so you don't have to copy the styles to each btn1, btn2... */
  .btn {
    background: rgb(255, 255, 255);
    padding: 30px;
    margin-top: 40%;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 70%;
  }
  
  .btn:hover {
    background: lightgray;
  }
  
  /* here you can put the common styles for your buttons, so you don't have to copy the styles to each btn1, btn2... */
  .modal {
    display: none;
    padding: 30px;
    border: 1px solid black;
    width: 300px;
    position: absolute;
    cursor: pointer;
    background: white;
  }
  
  .modal:hover {
    background: lightblue;
  }
  
  /* because the .modal class is absolutely positioned we can specify unique positions for different modals in the more specific modal classes */
  .modal1 {
    top: 60px;
    left: 40px;
  }
  
  .modal2 {
    bottom: 60px;
    right: 40px;
  }

  .modal3 {
    top: 120px;
    left: 90px;
  }
  
  .modal4 {
    bottom: 50px;
    right: 70px;
  }

  .modal5 {
    top: 30px;
    left: 120px;
  }
  
  .modal6 {
    bottom: 90px;
    right: 30%;
  }
  
  /* shows the modal */
  .visible {
    display: block;
  }