html{
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
}

body{
    background-color: #191919;
    color: white;
    font-family: sans-serif;
}

.container{
    margin: auto;
    width: 80%;
    max-width: 800px;
    min-width: 200px;
    padding: 5px 30px;
    border-radius: 10px;
}

.feature-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    /* max 3 in a row */
    flex-wrap: wrap;

}

.feature-box{
    background-color: #1f1f1f;
    padding: 0px 20px;
    border-radius: 15px;
    border: 1px solid #2d2d2d;
    margin: 10px 0px;
    width: calc(100% / 3 - 55px);
    transition: 0.2s all;
}

.feature-box:hover{
    transition: 0.2s all;
    background-color: #252525;
}

.button-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.button{
    margin: 0px 10px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 15px;
    color: white;
    background-color: #323232;
    transition: 0.2s all;
    border: 1px solid #3a3a3a;
}

.button-sec{
    background-color: transparent;
}

.button:hover{
    transition: 0.2s all;
    background-color: #424242;
}

.footer{
    text-align: center;
    /* ganz nach unten */
    position: absolute;
    bottom: 0;
    width: 99%;
}

/* Der neue Hilfs-Container, der als Anker für die Positionierung dient */
.year-wrapper {
  position: relative;
  display: inline-block;
}

.sprechblase {
  display: inline-block; 
  position: absolute;
  font-family: 'Courier New', Courier, monospace;
  
  /* Platziert die Sprechblase exakt über der Jahreszahl */
  bottom: 30px; 
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; /* Verhindert ungewollte Zeilenumbrüche im Text */
  
  /* Dein bestehendes Styling */
  background-color: #1f1f1f;
  color: #ffffff;
  padding: 8px 14px; /* Leicht reduzierte Polsterung, damit es kompakter wirkt */
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Der kleine Pfeil unten an der Sprechblase */
.sprechblase::after {
  content: "";
  position: absolute;
  
  /* Unten an der Sprechblase anheften */
  bottom: -8px; 
  left: 50%;
  transform: translateX(-50%);
  
  /* Der Rahmen-Trick für das Dreieck */
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: #1f1f1f transparent transparent transparent;
}

/* JavaScript Variablen (Hellblau) */
.code-var {
    color: #9cdcfe;
}

/* JavaScript Eigenschaften / Properties (Hellblau/Weiß) */
.code-prop {
    color: #cdcdcd;
}

/* JavaScript Keywords wie 'new' (Lila) */
.code-keyword {
    color: #c586c0;
}

/* JavaScript Klassen & Standardobjekte (Gelb/Grün) */
.code-class {
    color: #4ec9b0;
}

/* JavaScript Funktionen & Methoden (Gelb) */
.code-meth {
    color: #dcdcaa;
}

.colored {
    position: relative;
    border: none;
}

.colored::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px dashed #0394fc;
    border-radius: inherit;
}