body{
    background: black;
    font-family: 'VT323', monospace;
}

h1 {
  color: beige;
  text-align: center;
}

.wrapper {
    margin-left: 400px;
    margin-right: 400px;
    text-align: center;
    color: beige;
    padding: 20px;
    border-color: beige;
    border-width: 3px;
    border-style: solid;
    border-radius: 12px;
    font-size: 25px;
}

.buttons, .num, .start, .reset, .details {
    padding: 15px;
}

input[type="number"] {
    padding: 5px;
    width: 50px;
    font-size: 15px;
}

button {
    font-size: 25px;
    border-color: beige;
    border-radius: 10px;
    background-color: black;
    cursor: pointer;
}

#startGameButton {
    color: white;
}

#endGameButton {
    color: white;
}

#result, #sum, #hands, #player-score {
    margin-top: 0.5rem;
    font-weight: bold;
}

@media(max-width:480px){
    .wrapper{
        margin:30px
    }

    input{
        width: 30px;
    }
}

@media(max-width:768px){
    .wrapper{
        margin: 50px;
    }

    input{
        width: 50px;
    }
}

@media(max-width:1024px){
    .wrapper{
        margin:50px
    }
}