.space-mono-regular {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  font-style: normal;
}


body{
  font-family: "Space Mono", monospace;
  background-color:black;
  display:grid;
  color:white;
  overflow:scroll;
}

.wrapper{
  align-self:center;
  justify-self:center;
  display:flex;
  margin-top:2.5vw;
  margin-right:2.5vw;
}

.image{
  width:1200px;
  height:900px;
}

.outline{
  border:solid thick red;
  position:absolute;
  z-index:34343;
}

.legend{
  display:grid;
  align-items:center;
  justify-items:center;
  text-align:center;
}

.text{
    display:none;
    background-color:white;
    border:solid thick black;
    color:black;
    position:absolute;
    padding:10px;
    z-index:34344;
}

.outline:hover + .text{
  display:block;
}


