body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url("/images/bookmarks-bck.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#home-button {
  position: absolute;
  top: 40px;
  left: 210px;
}

#home-button img {
  display: block;
  width: 80px;
  transition: transform 0.3s;
}

#home-button:hover img {
  transform: scale(1.1);
}

#box {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fill, 88px);
  grid-auto-rows: 31px;
  gap: 2px;
  width: 40%;
  margin-left: 193px;
  padding: 20px 24px;
  max-height: 380px;
  overflow-y: auto;
}

#box img {
  display: block;
  width: 88px;
  height: 31px;
  transition: transform 0.3s;
}

#box a:hover img {
  transform: scale(1.1) rotate(var(--rotation));
  transform-origin: 50% 50%;
}

#s-m-t-tooltip {
  z-index: 9999;
  background: #fff;
  font-size: 12px;
  line-height: 13px;
  font-family: lucida console;
  letter-spacing: 1px;
  border: solid 1px;
  border-bottom-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-transform: normal;
  color: #111;
  max-width: 150px;
  word-wrap: break-word;
  padding: 2px 5px 2px 6px;
  display: block;
  margin: 24px 14px 7px 12px;
}
