body {
  margin: 0px;
}

.bg-body {
  background: url('../imgs/background/body.png');
  background-position: left top;
  background-repeat: repeat;
  background-size: 100%;
}

.bg-top > img, .bg-footer > img {
  width: 100%;
  display: block;
}

.header {
  margin-bottom: 50px;
}

.general-img {
  width: 300px;
}

.category > img {
  max-width: 220px;
}

.flex-container {
  display: flex;
  flex-wrap: nowrap;
  text-align: center;
  justify-content: space-between;
}

.flex-row {
  flex-direction: row;
}

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

.content-section {
  padding: 0 15% 10% 15%;
}

.main-title {
  width: 18%;
  max-width: 450px;
}

.stickers-container {
  position: relative;
}

.stickers-tooltip {
  position: absolute;
  opacity: 0;
  width: 60%;
  left: 65%;
  bottom: 50%;
  z-index: 1;
}

.shadow {
  filter: drop-shadow(-5px 5px 7px #222);
}

.shadow-grey {
  filter: drop-shadow(-5px 5px 7px #ccc);
}

.social {
  text-align: center;
}

.social > a {
  text-decoration: none;
  width: auto;
  padding: 0 5px;
}

.grow, .grow-less {
  transition: all .2s ease-in-out;
}

.grow:hover {
  transform: scale(1.1);
}

.grow-less:hover {
  transform: scale(1.02);
}

.slow-appear:hover + .stickers-tooltip {
  opacity: 1;
  transition-duration: 1s;
}

@media screen and (min-width: 1800px) {
  .content-margin {
    margin: auto 15%;
  }
}

@media screen and (max-width: 704px) {
  .flex-container {
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .main-title {
    width: 30%;
  }

  .header {
    margin-bottom: 10px;
  }

  .category {
    padding: 5% 0px 10% 0px;
  }

  .content-section .flex-column {
    margin: 20px auto;
  }

  .social {
    padding: 5% 0px;
  }

  .social img {
    width: 15%;
    filter: drop-shadow(-5px 5px 7px #222);
  }

  .general-img {
    width: 250px;
  }
}
