* {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

img {
  width: 100%;
  display: block;
}

#content {
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
  padding: 24px;
  position: relative;
  min-height: 720px;
  line-height: 1.8em;
  color: #333;
  background: linear-gradient(#feff90, #54e8aa);
  background-repeat: no-repeat;
}

.game-wrp {
  display: grid;
  grid-template-areas:
    "title title"
    "foodArea colorsSlot";
  grid-gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.fruttivendolo {
  position: absolute;
  bottom: 0;
  max-width: 460px;
}

#foodArea {
  display: grid;
  grid-template-columns: 100px 100px 100px 100px;
  grid-gap: 10px;
  justify-content: center;
  grid-area: foodArea;
}

#foodArea div {
  position: relative;
  width: 100%;
  height: 90px;
  transition: transform .1s ease-in-out;
  transform: scale(1);
}

#foodArea div:hover {
  cursor: grab;
}

#foodArea div.ui-draggable-dragging {
  transform: scale(1.2);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, .5));
}

#foodArea div img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}

.title {
  grid-area: title;
  width: 400px;
}

#seasonSlots {
  position: relative;
  display: grid;
  grid-template-columns: 220px 220px;
  grid-gap: 30px;
  justify-content: center;
  grid-area: colorsSlot;
}

#seasonSlots div {
  border: 4px solid #01fecb;
  transition: all .2s;
  border-radius: 8px;
  overflow: hidden;
}

.hovered {
  transform: scale(1.1);
  border-color: white;
}

#successMessage {
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  z-index: 100;
  background: white;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: .3em .3em .5em rgba(0, 0, 0, .8);
  -webkit-box-shadow: .3em .3em .5em rgba(0, 0, 0, .8);
  box-shadow: .3em .3em .5em rgba(0, 0, 0, .8);
  padding: 20px;
}

.modalArea {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, .8);
}

#audioHelpBtn {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%);
  background: none;
  border: none;
}