.body {
    display: flex;
    justify-content: center;
    align-items: center;
}
.input {
    width: 80vw;
    max-width: 600px;
    font-size: 1.2rem;
    padding: 10px;
    border: 3px solid #eee;
    border-radius: 12px;
    outline: none;
}
  
.input:focus {
    border-color: var(--color--orange);
}

.buttons {
    margin-top: 7px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-non-cta {
    color: var(--color--orange);
    border: 5px solid black;
    padding: 6px 6px;
    border-color: var(--color--orange);
}

.button-non-cta:active {
    background: var(--color--orange);
    color: white;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left{
    margin-right: 10px;
    height: 68px;
}
.right{
    margin-left: 10px;
    height: 68px;

}

/* Mobile Ansicht */
@media (max-width: 600px) {
    .input {
        width: 100%;
        font-size: 0.5rem; /* Anpassen der Schriftgröße */
    }

    .buttons {
        flex-direction: column; /* Stellt sicher, dass die Buttons untereinander statt nebeneinander angeordnet sind */
        align-items: stretch; /* Stellt sicher, dass die Buttons die gesamte Breite einnehmen */
    }

    .button-non-cta {
        width: 100%;
        text-align: center; /* Zentriert den Text im Button */
        margin-bottom: 10px; /* Fügt Abstand zwischen den Buttons hinzu */
    }

    .game-section{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .left{
        margin-right: 0px;
    }
    .right{
        margin-left: 0px;
    }
}
