body {
  cursor: url('Images/agw/website_cursor.png'), auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #02BDFF;
  font-family: "Work Sans", sans-serif;
  color: #081582;
  margin: 0px;
  padding: 0px;
}

hr {
  border: 1px solid #081582;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  & > img {
    width: 90%;
  }
  padding-top: 50px;
}

.about {
  display: flex;
  flex-direction: column;
  width: 80vw;
  padding: 50px 0px;
  background-image: url("Images/agw/img_dice.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 200px;
}

h1 {
  color: #FFF7CD;
  padding-top: 25px;
  padding-right: 100px;
  padding-bottom: 25px;
  font-weight: 400;
}

a {
  color:#081582;
}

a:hover {
  color:#FFF7CD;
  cursor: url('Images/agw/website_cursor.png'), auto;
}

.button {
  border: none;
  background-color: #FEDC2F;
  color: #004D90;
  padding: 20px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  cursor: url('Images/agw/website_cursor.png'), auto;
  width: 280px;
  border-radius: 50px;
}

.button:hover {
  background-color: #23EC93;
}

.events {
  display: flex;
  flex-direction: column;
  padding: 50px 0px;
  width: 70vw;
  & > img {
    width: 200px;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  width: 70vw;
  padding: 50px 0px;
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  & > img {
    width: 90px;
  }
}


/* <----------- RESPONSIVE LAYOUT ----------->*/
    /* Makes the menu and the content (inside the section) sit on top of each other instead of next to each other */
    @media only screen and (max-width: 600px) {
    
    h1 {
    padding-right: 30px;
    } 
    
    .banner {
      overflow: hidden;
      padding-top: 75px;
      padding-bottom: 25px;
      padding-left: 5px;
      padding-right: 5px;
    & > img {
      transform: scale(1.3);
      width: 100%;
      height: auto;
      display: block;
      }
    }
    
    .button {
      width: auto;
    }

    .about {
      background-image: none;
    }

    }
      
      
      