section{
  padding-top: 180px;
}

.message-box {
  place-content: center;
  display: flex;
  flex-direction: column;
  color: #000;
  font-family: Roboto;
  font-weight: 300;
}
.message-box h1 {
  font-size: 65px;
  line-height: 46px;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--main-title-font-color);
}

.message-box p {
  font-size: 21px;
}

.gallery {
  --s: 150px;
  display: grid;
}

.gallery > img {
  grid-area: 1/1;
  width: var(--s);
  aspect-ratio: 1.15;
  object-fit: contain;
  cursor: pointer;
  transition: 0.2s linear;
}

.gallery > img:nth-child(1) {
  --s: 150px;
  display: flex;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 4;
}
.gallery > img:nth-child(2) {
  --s: 250px;
  display: flex;
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;
}
.gallery > img:nth-child(3) {
  --s: 80px;
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 2;
  grid-row-end: 3;
}
.gallery > img:nth-child(4) {
  --s: 150px;
  grid-column-start: 2;
  grid-column-end: 5;
  grid-row-start: 4;
  grid-row-end: 7;
}
.gallery > img:nth-child(5) {
  --s: 150px;
  grid-column-start: 4;
  grid-column-end: 6;
  grid-row-start: 3;
  grid-row-end: 6;
}

#Polygon-1,
#Polygon-2,
#Polygon-3,
#Polygon-4,
#Polygon-4,
#Polygon-5 {
  animation: float 1s infinite ease-in-out alternate;
}
#Polygon-2 {
  animation-delay: 0.2s;
}
#Polygon-3 {
  animation-delay: 0.4s;
}
#Polygon-4 {
  animation-delay: 0.6s;
}
#Polygon-5 {
  animation-delay: 0.8s;
}

@keyframes float {
  100% {
    transform: translateY(10px);
  }
}

.scene {
  width: 10em;
  justify-content: center;
  align-items: center;
}
.buttons-con {
  margin-top: 10px;
}
.cube {
  color: #ccc;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  transition: all 0.85s cubic-bezier(0.17, 0.67, 0.14, 0.93);
  transform-style: preserve-3d;
  transform-origin: 100% 50%;
  width: 10em;
  height: 4em;
}

.cube:hover {
  transform: rotateX(-90deg);
}

.side {
  box-sizing: border-box;
  position: absolute;
  display: inline-block;
  height: 4em;
  width: 12em;
  text-align: center;
  text-transform: uppercase;
  padding-top: 1.3em;
  font-weight: bold;
}

.top {
  background: #1694d4;
  border-radius: 18px;
  color: #fff;
  transform: rotateX(90deg) translate3d(0, 0, 2em);
  box-shadow: inset 0 0 0 5px #fff;
}

.front {
  background: #01303a;
  color: #fff;
  box-shadow: inset 0 0 0 5px #fff;
  transform: translate3d(0, 0, 2em);
  border-radius: 18px;
}

@media screen and (max-width: 768px) {
  section{
    padding-top: 100px;
  }
  .message-box p {
    font-size: 18px;
  }
  .message-box h1 {
    font-size: 50px;
}
