body {
  background-color: var(--background-color);
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.full-viewport {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 2800px;
  margin-top: 50px;
  padding: 20px 20px;
  gap: 80px;
  position: relative;
  text-align: center;
}

.centering {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.description {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  transform: none;
  margin: 50px;
}

.element {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px;
  gap: 0;
  max-width: 1340px; /* Original Width 1200px + double margin 20px * 2 = 1340px */
  flex: 1;
  transform: none;
}

.text {
  min-width: 280px;
  text-align: center;
  transition: transform ease 0.3s;
  flex: 1;
  font-weight: bold;
}

.text.clickable:hover {
  transform: scale(1.02);
  cursor: pointer;
}

.text h1,
.text h2 {
  margin-bottom: 10px;
}

.large {
  font-size: 1.4rem;
  line-height: 1.6;
  width: auto;
}

.image {
  min-width: 200px;
  max-width: 720px;
  display: flex;
  justify-content: center;
  transition: transform ease 0.3s;
  user-select: none;
  flex: 1;
}

.image.small {
  max-width: 140px;
  display: flex;
  justify-content: center;
  transition: transform ease 0.3s;
  height: auto;
  width: auto;
}

.image:hover {
  transform: scale(1.02);
  cursor: pointer;
}

.image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.divider {
  width: 95%;
  margin: 0 auto;
  border: 2px solid var(--blue-1);
}

.reverse {
  flex-direction: row-reverse;
}

.horizontal {
  flex-direction: row;
}

.imagedescriptor {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

div.tiny {
  color: var(--primary-300);
}

h3.tiny {
  margin: 10px 0px;
}

.hidden {
  display: none;
  visibility: hidden;
}

@media (max-width: 768px) {
  .largetext {
    font-size: 1rem;
  }

  .image.small {
    max-width: 100px;
    width: auto;
    height: auto;
    margin: 0 auto;
  }

  .text {
    min-width: 0;
    width: auto;
  }

  .element {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    gap: 30px;
  }

  .horizontal {
    flex-direction: column;
  }

  .image {
    max-width: 280px;
    width: auto;
    height: auto;
  }
}
