body{
    background-color:black;
}

header{
    position: relative;

    color: rgb(107, 107, 107);
    text-align: center;
    font-size: 24px;
}

.backhome{
    position: absolute;

    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    color: rgb(255, 255, 255);
    text-decoration: none;
}

.container{
    display: flex;
    justify-content: center;
}

.navigation{
    display: flex;
    gap: 20px;
    list-style: none;
}

.navigation a{
    color:rgb(61, 61, 61);
}

.games{
    list-style: none;
}

#GameStart{
    margin-top: 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#Generate{
    height: 60px;
    font-size: 32px;
    background-color: rgb(51, 51, 51);
}

#StartGame{
    font-size: 24px;
    color: rgb(51, 51, 51);
}

#EnterNumber{
    display: flex;
    justify-content: center;
    gap: 20px;
}

#numberInput{
    font-size: 24px;
    width: 350px;
    height: 30px;
    background-color: rgb(41, 41, 41);
    color: rgb(255, 255, 255);
}

#Submit{
    font-size: 24px;
    width: 100px;
    height: 36px;
    background-color: rgb(41, 41, 41);
}

#resultText{
    font-size: 32px;

    display: flex;
    justify-content: center;
}

#GuessesNum{
    display: flex;
    flex-direction: column;
}

#Tabel{
    display: flex;
    margin-left: 3%;

    font-size: 40px;
    color: rgb(78, 78, 78);
}

#Numbers{
    font-size: 40px;
    color: rgb(107, 107, 107);
}