@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Public+Sans&display=swap');

body {
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }

path {
    stroke: white;
    /* fill:lightgray !important; */
    transition: fill .4s ease;
}

a p {
  color: white;

}

a  {
  color: white;
}


#us-map {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CSS styles for all screen sizes */
#key-table p {
  font-size:0.7rem;
  padding:0.2rem;
  padding-left:0.3rem;
  color:white;
  width: 5rem;
}



#key-table {
  width:11%;
  position: relative;
  top:16rem;
}

#key-table div {
  margin:0.5rem;
}

#key-table div.red{
 background-color:#e63632;
}

#key-table div.black{
  background-color:#d89B46;
 }

#details-box {
    padding: 1rem;
    border-radius: 8px;
    position: absolute;
    color: white;
    font-family: "Poppins";
    background-color: black;
    width: fit-content;
    z-index: 1;
}

#details-box p {
 margin-bottom:5px;
}

p {font-size: 0.8rem; margin:0; font-family: 'Public Sans', sans-serif;}

.justifyCenter {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

@media screen and (max-width: 760px) {
  #location {
    font-size:3rem;
  }
}

/* CSS for iPhone 12 mini */
@media only screen
  and (device-width: 375px)
  and (device-height: 812px)
  and (-webkit-device-pixel-ratio: 3) {
    #details-box{
      bottom: 8rem;
    }
}

