body {
  background-color: rgb(255, 197, 197);
  color: black;
  font-family: Verdana;
}

@media (max-width: 992px) {
  .col { width: 100% !important; }
  .adapt-img {
    width: 100%;
  }
  .mobile{
    display: block;
  }
}

@media (min-width: 992.02px)
{
  .mobile{
    display: none;
  }
}

.main{
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 30rem;
}


.menu{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.menu button{
  padding: 0.2rem;
  margin: 0.2rem;
}

.thumb{
  width: 20rem;
  height: 20rem;
  object-fit: cover;
}

.thumb{
  border: solid;
  border-radius: 0.3rem;
  border-color: transparent;
}

.thumb:hover{
  border-color: rgb(190, 190, 190);
}

.box{
  padding: 1rem;
  margin: 0.2rem;
  border: solid;
  border-radius: 0.3rem;
  border-color: rgb(255, 167, 167);
  background-color: white;
}

.text-center{
  text-align: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.col {
  padding: 0.5rem;
  box-sizing: border-box;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180vw;
  max-height: 180vh;
  overflow: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  height: auto;
  width: auto;
  object-fit: contain;
}

.center{
  margin: 0 auto;
  padding: 1.2rem
}

.hidden{
  display: none;
}

.curtain{
  position: fixed;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.flex-col{
  display: flex;
  flex-direction: column;
}