body {
  background: linear-gradient(90deg, #003B6B, #0764A1);
  color: white;

  font-family: "Stack Sans Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 18px;

  height: 100vh;
  margin: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.screen {
  display: contents;
}

h1 {
  font-weight: 400;
}

.logos {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -9;

  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.xxvi-logo {
  width: 200px;
  height: auto;
}

.valivyzva-logo {
  width: 250px;
  height: auto;
}

.content {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  color: #001b32;
  border-radius: 16px;
  width: 640px;
  max-width: 100vw;
  padding: 32px;
  text-align: center;
}

.small-text {
  font-size: 0.8em;
}

.answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}