#details {
  margin-top: 20px;
  font-size: 12px;
  width: auto;
  font-weight: lighter;
  display: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "PT Serif", serif;
  padding: 10px;
  margin-top: -40px;
  gap: 5px;
  color: #4dff00;
  cursor: pointer;
  z-index: 9999;
}

#details:hover {  
color: yellow;
font-weight: bold;

}

@media screen and (max-width: 600px) {
  #details {
    width: 90vw;
  }
}

@media screen and (max-width: 400px) {
  #details {
    width: 95vw;
  }
}