body {
    margin: 0;
    background: rgb(255, 255, 255);
    color: #000000;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}
.screen {
    display: none;
    min-height: 100vh;
    text-align: center;
}

.screen.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none;
}

#startScreen h1 {
  transition: transform 0.8s ease;
}

#startScreen.starting h1 {
  transform: translateY(-17vh);
}

#closeButton {
    position: fixed;

    top: 20px;
    right: 20px;

    background: transparent;
    border: none;

    color: #000000;

    font-size: 32px;

    font-family: inherit;

    cursor: pointer;

    z-index: 999;
}

.opinion-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.opinion-card {
  width: 250px;
  height: 180px;

  background-image: url("gtt_assets/person_speech.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 10px 35px 90px 35px;
  box-sizing: border-box;

  font-size: 15px;
  text-align: left;
  
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {

  0% {
    opacity: 0;

    transform: translateX(-50px);
  }

  100% {
    opacity: 1;

    transform: translateX(0);
  }

}

.opinion-row .opinion-card:nth-child(1) {
  animation-delay: 0s;
}

.opinion-row .opinion-card:nth-child(2) {
  animation-delay: 0.2s;
}

.opinion-row .opinion-card:nth-child(3) {
  animation-delay: 0.4s;
}

#icons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding: 10px;
    cursor: pointer;
}

#closeButton {
    position: fixed;
    top: 20px;
    right: 20px;
}

footer {
    position: fixed;
    bottom: 10px;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;

    padding: 0 20px;

    box-sizing: border-box;
}