*{
  box-sizing: border-box;
}

body {
  font-size: 1vw;
  font-family: Roboto Mono, monospace;
}
p {
  font-size: 2.4em;
  margin: 0px;
  padding: 0px;
  border: 0px;
  text-align: center;
}
.status {
    font-size: 2em;
    text-align: center;
    background-color: #eee;
    margin: 20px;
    padding: 10px;
}

.wrapper {
    margin:auto;
    width: 95vw;
    background-color: white;
   }

#last-image {
    margin: auto;
    display: block;
    width: 95%;
}

.grid{
    background-color: white;
    display: grid;
    width: 95vw;
    grid-template-columns: repeat(4, 2fr);
    border: 10px;
    padding: 5px;
    justify-content: center;
}

.img{
    width: 20vw;
    object-fit: cover;
    object-position: center center;
    background-color: #fff;
    padding: 1vw 1vw 0.1vw 1vw;
    margin: 1vw 1vw 0.1vw 1vw;
    border-radius: 3px;
}

#modal{
  background-color: rgba(255,255,255,0.5);
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(4px);
  display: none;
}


#modal.active{
  display: grid;
  place-items: center;
}

#img{
  max-width: 95%;
  max-height: 95%;
  border: 4px solid white;
  box-shadow: 1px 3px 10px rgba(0,0,0,0.5);
}