:root {
    --my-color: #90ee90; /* Neue Farbe */
    --my-color: #008000; /* Neue Farbe */

  }

#bootscreen1 {
 padding: 50px;
}

  #hinweisGross {
    background-color: black;
    color: var(--my-color);
    font-size: 3.5vw;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    text-align: center;
    border: 5px double var(--my-color);
  }


.nurtext{
    margin-left: 5%;
    margin-right: 5%;
}
  

.frame {
    width: 100%;
    text-align: center;
    background-color: var(--my-color);
    color: black;
}

  table {
    border: 10px double;
}
th {
    background-color: var(--my-color);
    color: black;
    padding: 10px;
}
td {
    border-bottom: 1px solid;
    text-align: center;
    padding: 10px;
}

body {
    display: grid;
    margin: 0;
    height: 95vh;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.5vmin;
    font-weight: bold;
    color: var(--my-color);
    background-color: black;
}

#spielscreen {
    grid-template-columns: 25% 75%;
}

#begriff,
#buchstaben {
    border: 2px solid var(--my-color);
    padding: 5px;
    font-size: 3.5vw;
    background: black;
    color: var(--my-color);
}


.play-column,
.info-column {
    display: grid;
    place-items: center;
}

.info-column {
    margin: 5px;
    border: 2px solid var(--my-color);
    border-radius: 10px;;
}

.play-column {
    background: var(--my-color);
    color: black;
}

#titel {
    text-decoration: underline;
    font-size: 2.5vw;
    width: 1005;
    text-align: center;
    background-color: var(--my-color);
    color: black;
}

#inGameLevel{
    text-decoration: none;
    font-weight: 100;
}
.pointer {
    cursor: pointer;
}

#begriff {
    text-transform: uppercase;
}

#bild {
    display: grid;
    place-items: center;
    background: black;
    color: var(--my-color);
    border: 3px double black;
    border-radius: 10px;

}

#stufe {
    font-size: 1.5vw;
    font-weight: normal;
    white-space: pre-wrap;
    text-align: center;
    border: 2px solid var(--my-color);

}

#titelscreen,
#anleitungScreen,
#infoScreen,
#einstellungScreen,
#statistikScreen {
    display: grid;
    place-items: center;
    white-space: pre-wrap;
}

#titelscreen {
 font-size: 2vmin;
}

.box {
    border: 1px solid var(--my-color);
    font-size: 3.5vw;
}
.menu {
    border: 1px solid var(--my-color);
    font-size: 2.5vw;
    width: 40vw;
    margin-left: 30vw;
}
.menuframe {
    width: 100vw;
    text-align: center;
    background-color: var(--my-color);
    color: black;
    font-size: 2.5vw;

}

.beenden {
    border: 1px solid var(--my-color);
    font-size: 2.5vmin;

}

#intro {
    display: grid;
    place-items: center;
    width: 98vw;
    height: 98vh;
    color: gray;
}

#beendenFrage,
#richtig {
    background-color: black;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    text-align: center;
}
#neuFrage {
    background-color: var(--my-color);
    color: black;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    text-align: center;
}

#janeinbox {
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
}

.janein {
    padding: 10px;
    border: 5px double var(--my-color);
    background-color: black;
    color: var(--my-color);

}

.center {
    display: grid;
    place-items: center;
    width: 100%;
    text-align: center;
}

.unterstrichen{
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: var(--my-color);

}

@media (orientation: portrait) {
    #spielscreen {
        grid-template-columns: 100vw;
    }
    
}