html
{
  overflow-y: hidden;
  overscroll-behavior-y: none;
}

body 
{
  background-color: #CC9F78;
  background-image: url(https://ik.imagekit.io/gale/brown-paper);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-stamp-container
{
  max-width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: max-content;
  grid-gap: 12px;
  place-items: center;
}

.menu-stamp
{
  display: flex;
  flex-direction: column;
  place-items: center;
  text-decoration: none;
  color: black;
}

.sophie-font
{
  font-family: 'sophie', "Times New Roman", serif;
  font-size: 2rem;
}

@media (max-width: 480px) 
{ 
  .sophie-font
  {
    font-size: 1.2rem;
  }
}

.menu-stamp img
{
  max-height: 25vh;
  max-width: 30vw;
  padding: 4px;
  filter: drop-shadow(1px 4px 4px rgba(0, 0, 0, 0.25));
}

.menu-stamp img:hover
{
  rotate: 5deg;
  filter: drop-shadow(1px 4px 4px rgba(0, 0, 0, 0.5));
}

.under-construction 
{
  color: #371a10b5;
  cursor: help;
}

.under-construction img:hover
{
  rotate: 0deg;
  filter: drop-shadow(1px 4px 4px rgba(0, 0, 0, 0.25));
}
