body{
    margin: 0%;
    padding: 0%;
    font-family: Arial, sans-serif;
    background: rgb(89, 89, 89);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0%;
    padding: 0%;
}

#container {
    position: relative;
    height: 75vh;
    width: 400px;
    background: rgb(19, 92, 34);
    border-radius: 5px;
    box-shadow: 0px 0px 5px 1px goldenrod;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

#blackjack {
    margin-top: 90px;
    letter-spacing: 10px;
    text-shadow: 2px 2px 5px black;
    color: goldenrod;
}

#welcome{
    position: absolute;
    top: 50px;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    font-size: 20px;
}

input[type="text"]{
    position: absolute;
    padding: 8px;
    border: none;
    border-radius: 3px;
    background: yellowgreen;
    font-size: medium;
    text-align: center;
    color: white;
    font-weight: 600;
}

input::placeholder{
    color: white;
    font-weight: 600;
}

#player-name{
    top: 210px;
    width: 200px;
}

#chips{
    top: 250px;
    width: 200px;
}

button{
    position: absolute;
    background: goldenrod;
    border: none;
    border-radius: 3px;
    color: rgb(19, 92, 34);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: xx-large;
    cursor: pointer;
}

#play-btn{
    position: absolute;
    bottom: 130px;
    font-weight: 900;
    padding: 5px 20px;
}

#new-card-btn{
    visibility: hidden;
    bottom: 230px;
    left: 136px;
    font-size: small;
    font-weight: 900;
    padding: 5px 8px;
}

#stop-btn{
    visibility: hidden;
    bottom: 230px;
    right: 136px;
    font-size: small;
    font-weight: 900;
    padding: 5px 8px;
}

#chip-display{
    position: absolute;
    bottom: 180px;
    color: rgb(19, 92, 34);
    font-size: medium;
    font-weight: 600;
    background: goldenrod;
    padding: 5px 24px;
    border-radius: 3px;
    visibility: hidden;
}

#new-game-btn{
    visibility: hidden;
    bottom: 130px;
    font-size: medium;
    font-weight: 900;
    padding: 5px 25px;
}

#new-game-btn:hover, #stop-btn:hover, #new-card-btn:hover, #play-btn:hover{
    background: rgb(255, 223, 0);
}

#game-area{
    visibility: hidden;
    position: absolute;
    top: 190px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
    align-items: center;
    font-size: large;
    background-color: rgb(14, 129, 14);
    border-radius: 3px;
    padding: 10px;
}

#game-over{
    visibility: hidden;
    position: absolute;
    top: 280px;
    color: white;
}