@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
body{
  font-family: sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;

  background-color: black;
  background-size: cover;
}

.image-button {
    display: inline-block;
    position: relative;
    width: 200px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 80px;
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 20px;
    text-decoration: none;
    user-select: none;
    transition: transform 0.2s ease;
    border-radius: 4px;
  }
  
  .image-button:hover {
    opacity: 0.8;
    transform: scale(1.1);
  }
  
  .image-button span {
    position: relative;
    z-index: 2;
  }

  .game1{
    background-image: url('https://media1.tenor.com/m/uLYv3MFt2HwAAAAd/rat-dancing-rat.gif');
  }
  .game2{
    background-image: url('https://media1.tenor.com/m/IbV52JKof8QAAAAd/funny-slide.gif');
  }
  .game3{
    background-image: url('https://media1.tenor.com/m/B3tlzsgy7FsAAAAd/tennis-tennis-ball.gif');
  }
  .game4{
    background-image: url('https://media1.tenor.com/m/LqNPvLVdzHoAAAAd/cat-ping.gif');
  }
  .game5{
    background-image: url('https://media1.tenor.com/m/AP-euSz9zcMAAAAd/soccer-robot.gif');
  }
  .game6{
    background-image: url('https://media1.tenor.com/m/bSy280kk_osAAAAd/power-plant-time-lapse.gif');
  }
  
  .credit{
    background-image: url('https://media1.tenor.com/m/ROCX1i8hrDQAAAAd/credit-card-swipe.gif');
  }

main{
    padding: 1rem;
}

.navbar{
  width: 100%;
  background-color: rgba(29, 29, 29, 0.8);
  padding: 8px;
  display: flex;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
.navbutton{
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
}
.navbutton:hover{
  transform: scale(1.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.game-title{
  margin: 0px;
  margin-bottom: 1rem;

  font-family: "Archivo Black", sans-serif;

  color:white;
  font-size: 3rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: bolder;
  -webkit-text-stroke: 2px black;
}
main{
  margin: auto;
  margin-top: 1rem;
  width: 70%;
  background-color: rgba(29, 29, 29, 0.8);
  border-radius: 4px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: none;
}
canvas{
  background-color: white;
  border-radius: 4px;
}
.home-title{
  margin: 3rem auto;
  text-align: center;
  color:white;
  font-size: 7rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.home-main{
  display: flex;
  gap: 10px;
  flex-direction: row;
}