/* Stil für den Welcome-Bereich */
.welcome {
    text-align: center;

}

.welcome h1 {
    font-size: 28px;
    line-height: 1.4;
}

.welcome span {
    font-size: 24px;
    font-weight: bold;
}

/* Stil für den Trophäen-Bereich */
/* Stil für den Trophäen-Bereich */
.trophy-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.trophy {
    position: relative;
    font-size: 20px;
    color: gold;
    border: 2px solid transparent;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trophy i {
    font-size: 100px;
}

.trophy:hover {
    border-color: #333;
    box-shadow: inset 18px 18px 31px goldenrod, 
                inset -18px -18px 31px gold;
}

.trophy::before {
    content: attr(data-info);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.trophy:hover::before {
    opacity: 1;
}

.trophy-container.two-trophies .trophy {
    flex: 0 0 50%; /* Zwei Trophäen in gleicher Breite */
    margin: 10px; /* Abstand zwischen den Pokalen */
}

.trophy-container.two-trophies .trophy:nth-child(2) {
    margin-right: 0; /* Kein rechter Abstand für den letzten Pokal */
}
