*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: limegreen;
}

.flexstart {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content {
    max-width: 50%;
    margin: 5%;
}

.guessList {
    flex-direction: column;
    overflow-y: scroll;
    max-width: 20vw;
    max-height: 20vh;
}

#list {
    max-width: 20vw;
    max-height: 15vh;
}

#numberlist {
    max-width: 20vw;
    max-height: 10vh;
}

button {
    background-color: black;
    padding: 5%;
    border: limegreen 2px solid;
    color: limegreen;
    border-radius: 5px;
}

input {
    background-color: black;
    border: none;
    color: limegreen;
}

.input {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.margin {
    margin-right: 2%;
}

#passwordInput {
    text-align: center;
}