body {
  font-family: "OCR A Std", monospace;
  background-color: #191919;
}

.parent {
display: grid;
grid-template-columns: 10% 90%;
grid-template-rows: repeat(10, 20%);
grid-column-gap: 20px;
grid-row-gap: 20px;
}

.rankTEN {
  background-color: #ff7e7e;
  width:152px;
  height:152px;
  justify-content: center;
  }
  
  .rankNINE {
  background-color: #ffbf7f;
  width:152px;
  height:152px;
  justify-content: center;
  }
  
    .rankEIGHT {
  background-color: #fefe7e;
  width:152px;
  height:152px;
  justify-content: center;
  }
  
      .rankSEVEN {
  background-color: #7fff7f;
  width:152px;
  height:152px;
  justify-content: center;
  }
  
.images {
  margin-bottom: 100px;
  }

.zoom {
  transition: transform .2s; /* Animation */
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

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

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/*navigation*/
#navbar {
  height: auto;
  /*background-color: #360906;*/
  width: 100%;
  margin: 10px
}

#navbar ul{
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

#navbar li{
  padding-top: 10px;
  justify-content: space-evenly;
}

button {
  font-family: "OCR A Std", monospace;
  background-color: #360906;
  width: 100px;
  height: 50px;
  color: white;
}

/*links*/

a:link{
  color: var(--fontcolor);
}

a:visited{
  color: var(--fontcolor)  
}

a:hover{
  color: var(--fontcolorRed);  
}