* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef7f9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #3b427a;
}

.construction-container {
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.isometric-icon {
  font-size: 80px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  filter: drop-shadow(5px 5px 0px rgba(74, 85, 162, 0.1));
  animation: float 3s ease-in-out infinite;
}
.isometric-icon .tools-emoji {
  display: block;
  filter: sepia(100%) hue-rotate(190deg) saturate(150%) brightness(90%);
  opacity: 0.8;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
  text-transform: capitalize;
}

.description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(59, 66, 122, 0.9);
  margin-bottom: 40px;
}
.description .lang-block {
  margin-top: 10px;
  font-weight: 400;
}

.divider {
  width: 60px;
  height: 4px;
  background: #4a55a2;
  margin: 0 auto;
  border-radius: 2px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
}

/*# sourceMappingURL=style.css.map */
