body {
    font-family: Arial, sans-serif;
    background-color: #F0F0F0;
}

#game-container {
    width: 80%;
    height: 90%;
    margin: 0 auto;
    text-align: center;
}

#game-board .letter {
    position: absolute;
    font-size: 20px;
    cursor: pointer;
}
#game-board {
    width: 80%;
    height: 70%;
    margin: 0 auto;
    border: 3px solid #000;
    position: relative;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shape-circle {
    width: 30px;
    height: 30px;
    background-color: #6495ed; /* CornflowerBlue */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #000000;
}

.shape-square {
    width: 30px;
    height: 30px;
    background-color: #7fffd4; /* Aquamarine */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #000000;
}
.shape-triangle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #000000;
    font-size: 18px;
    padding-bottom: 1px;
    min-width: 30px;  /* Setzt die Mindestbreite auf 30px */
    min-height: 30px; /* Setzt die Mindesthöhe auf 30px */    
}
.shape-triangle svg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.shape-triangle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.shape-ellipse {
    width: 40px;
    height: 30px;
    background-color: #98fb98; /* PaleGreen */
    border-radius: 50%/100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #000000;
}
.current-letter {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.elapsed-time {
    font-size: 20px;
    margin-bottom: 10px;
}
#current-letter {
    margin-top: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}
#btn-start {
  margin-top: 20px;
  font-size: 24px;
  color: #333;
}
#elapsed-time {
    margin-top: 20px;
    font-size: 20px;
    color: #333;
    text-align: center;
}

#start-button {
    display: block;
    width: 200px;
    height: 50px;
    margin: 30px auto;
    background-color: #6cd4ff;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#start-button:hover {
    background-color: #5bc6f5;
}

#start-button:disabled {
    background-color: #bbb;
    cursor: not-allowed;
}
/* Hier können Sie spezielle CSS-Stile für verschiedene geometrische Formen
