* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}

.main-container {
  width: 100%;
  /* background: #ffffff17; */
  background: rgba(115, 115, 115, 0.09);
  height: 100dvh;
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  /* justify-content: center; */
}

.main-container .article {
  flex: 1;
}

.main-container .article h2 {
  font-size: 30px;
}

.main-container .illustrator {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.main-container .illustrator img {
  width: 100%;
  filter: drop-shadow(10px 50px 10px #ccc);
  animation: rota 2s forwards;
  transform-style: preserve-3d;
  transform: translateX(100%);
}

@keyframes rota {
  100% {
    transform: translateX(0);
  }
}

.bg-t-primary {
  background: #0000ff;
}
.noshow {
  display: none;
}

