@font-face {
    font-family: nexagon;
    src: url('nexagon.otf') format('opentype');
      font-weight: 400;
  }


  
  * {
    box-sizing: border-box;
    text-decoration: none;
  }


  h1 {
    text-align: center;
    line-height: 70px;
    margin: 0;
    font-size: 25px;
  }

  h2 {
    text-align: center;
    font-size: 20px;
  }

  p {
    font-size: 20px;
    text-align: center;
  }

  h1, h2, p, a {
    color: rgb(125, 231, 64);
    font-family: nexagon;
  }

  a {
    font-size: 20px;
    text-align: center;
   padding-top: 20px;
   
   
  }

  a:hover {
    font-size: 25px;
  }

  body {
    background-color: rgb(155, 64, 230);
  }

  .wrapper {
    aspect-ratio: auto;
    max-width: 800px;
    margin: auto;
    display: block;   
    border: solid 1rem;
    border: 1vw solid green;
    border-image: radial-gradient(circle, rgba(87,209,167,1) 33%, rgba(232,70,252,1) 100%) 20;
  background-color: rgb(92, 111, 196);
 

  }

  img {
    margin: auto;
    display: block;
    margin-top: 10px;
    max-width: 400px;
  }
  
 .items {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: auto;
  max-width: 400px;
  height: auto;
  padding: 20px;
  flex-wrap: wrap;
  border: 5px solid purple;
  margin: auto;
  background-color: rgb(92, 111, 196);
  
 }

 .home {
  background-image: url(maze.gif);
  background-position: center;
  background-size: 100%;
  background-repeat: repeat;
  min-height: 100vh;
 }

 .tooltip {
  position: relative;
  display: inline-block;
  cursor: default;
}

.tooltip .tooltiptext {
  visibility: hidden;
  padding: 0.25em 0.5em;
  background-color: rgb(255, 255, 255);
  color: #bd40f7;
  text-align: center;
  border-radius: 0.25em;
  white-space: nowrap;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  transition-property: visibility;
  transition-delay: 0s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  transition-delay: 0.3s;
}