#creditsHeader{
    font-size: 1.2em
}
:root {
  --title-text: #699ed9;
  --orange: #fe6c6d;
  --cream: #fed8d7;
  --blue: #0066cb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}



  .word-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    width: 80vw;
    margin: 0 auto 10vw auto;
  }



  .word {
    color: #333;
    font-weight: bold;
    padding-left: 1vw;
    padding-top: 3vh;
    border-radius: 5px;
    transition: transform 0.2s;
  }

  .word:hover {
    transform: scale(1.2);
  }

  .size1 { font-size: 1.2em; color: #0066CC; }
  .size2 { font-size: 1.4em; color: #FF6D6D; }
  .size3 { font-size: 1.6em; color: #ffaaaa; }
  .size4 { font-size: 1.8em; color: #699ed9; }
  .size5 { font-size: 2.2em; color: #FF6D6D; }
  .lehrer { font-size: 2.4em; color: #FF6D6D; }


#gitLogo {
    position: absolute;
    top: 4%;
    left: 2%;
    margin-bottom: 0;
    width: 220px;
    object-fit: contain;
    user-select: none;
    cursor: pointer;
}



#htl-logo {
  position: absolute;
  left: 2%;
  bottom: 2%;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}
#htl-logo > img {
  width: 100%;
  height: auto;
}


#container {
  position: absolute;
  top: 0;
  left: 0;
  width: 29%;
  height: 100%;
  padding: 0 0 5% 4%;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: space-evenly;
}
#title {
  text-align: center;
  user-select: none;
  margin-top: 20vh;
}
#container #title h1 {
  font-size: 4em;
  color: #0066CC;
  margin: 0;
  font-weight: 900;
}
#container #title p {
  font-size: 1.5em;
  margin-left: 0px;
  font-weight: 600;
  word-spacing: 0.1em;
  color: var(--title-text);
}



/* Responsive Design */

@media (max-width: 1200px) {
  
  #container {
    width: 40%;
    padding-left: 2%;
  }
  
  #container #title h1 {
    font-size: 3em;
  }
  
  #container #title p {
    font-size: 1.2em;
  }
  
  .word-cloud {
    width: 95vw;
    gap: 3vw;
  }

}

@media (max-width: 900px) {
  
  #container {
    width: 60%;
    padding-left: 1%;
  }

  #container #title h1 {
    font-size: 2.2em;
  }

  #container #title p {
    font-size: 1em;
  }

  .word-cloud {
    width: 98vw;
    gap: 4vw;
  }

  .word {
    padding-top: 2vh;
    font-size: 1em;
  }

  .size1 { font-size: 1em; }
  .size2 { font-size: 1.1em; }
  .size3 { font-size: 1.2em; }
  .size4 { font-size: 1.3em; }
  .size5 { font-size: 1.5em; }
  .lehrer { font-size: 1.7em; }

}

@media (max-width: 600px) {
  
  #gitLogo {
    width: 178px;
  }

  #container {
    width: 100vw;
    position: static;
    padding: 0 2vw 10vw 2vw;
    align-items: center;
  }
  
  #title {
    margin-top: 22vh;
  }
  
  #container #title h1 {
    font-size: 1.5em;
  }
  
  #container #title p {
    font-size: 0.9em;
  }
  
  .word-cloud {
    width: 100vw;
    gap: 2vw;
  }
  
  .word {
    padding-top: 1vh;
    font-size: 0.9em;
  }
  
  .size1 { font-size: 0.9em; }
  .size2 { font-size: 1em; }
  .size3 { font-size: 1.1em; }
  .size4 { font-size: 1.2em; }
  .size5 { font-size: 1.3em; }
  .lehrer { font-size: 1.4em; }

}


@media (max-width: 400px) {
  
  #container #title h1 {
    font-size: 1.1em;
  }

  #container #title p {
    font-size: 0.7em;
  }

  .word-cloud {
    gap: 1vw;
  }

  .word {
    font-size: 0.8em;
  }

  .size1 { font-size: 0.8em; }
  .size2 { font-size: 0.9em; }
  .size3 { font-size: 1em; }
  .size4 { font-size: 1.1em; }
  .size5 { font-size: 1.2em; }
  .lehrer { font-size: 1.3em; }

}

@media (width < 450px) {

  #gitLogo {
    width: 170px;
  }

}