body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: black;
    overflow: hidden;
  }


  #rain {
    display: none;
}

/* zoomed image */


.zoomed-img-container {
width: 100%;
height: 100vh;
/* background-color: rgba(0, 0, 0, 0.8); */
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999999;
/* display: none; */
}

.zoomed-img {
height: min(100vw - 50px, 100vh - 50px);
width: min(100vw - 50px, 100vh - 50px);
}

.zoomed-img img {
inset: 0px;
box-sizing: border-box;
padding: 0px;
border: none;
margin: auto;
display: block;
width: 0px;
height: 0px;
min-width: 70%;
max-width: 70%;
min-height: 70%;
max-height: 70%;
object-fit: contain;
}

.zoomed-img-container .sound-btn {
top: 8px;
right: 8px;
display: flex;
position: absolute;
}

.zoomed-img-container .sound-btn:hover {
cursor: pointer;
}

.zoomed-img-container .sound-btn img {
width: 50px;
}

.footer-left {
  bottom: 8px;
  left: 8px;
  display: flex;
  position: absolute;
}
.footer-right {
  bottom: 8px;
  right: 8px;
  display: flex;
  position: absolute;
}

.footer-left span, .footer-right span {
  color: white;
  font-size: 10px;
  font-family: 'Courier New', Courier, monospace;
}

.footer-left .fa-heart {
  color: rgba(255, 0, 0, 0.663);
}
