* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  width: 100%;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
}

.screen {
  min-height: 100dvh;
  width: 100dvw;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #18191c;
  overflow: hidden;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  box-shadow: 0 0 250px 250px rgba(96, 165, 250, 0.5);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .glow {
    box-shadow: 0 0 150px 150px rgba(96, 165, 250, 0.5);
  }
}

.content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  padding: 0 24px;
  text-align: center;
  color: #eaecf0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.robot {
  width: min(280px, 60vw);
  height: auto;
  margin-bottom: 1.5rem;
  object-fit: contain;
  display: block;
}

.title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.text {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .robot {
    width: min(200px, 50vw);
    margin-bottom: 1rem;
  }
  .title {
    font-size: 1.5rem;
  }
  .text {
    font-size: 1rem;
  }
}

.link {
  font-weight: 700;
  color: #9bf763;
  background: linear-gradient(194deg, #9bf763 9.96%, #26ab5b 90.04%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
}

.link:hover {
  opacity: 0.9;
}
