body {
    background-color: #F46036;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn,
.weapon {
    /* rounded circle */
    height: 300px;
    width: 300px;
    border-radius: 300px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn p {
    color: #6F1D1B;
    font-size: 60px;
    font-family: Inter;
}

.rectangle {
    background-color: #DDF9C1;
    border: 20px solid #C44536;
}

/* asking for player name */
.name-container {
    width: 300px;
    height: 50px;
    background-color: ;
}

input {
    background-color: #DDF9C1;
    width: 293px;
    height: 45px;
    text-align: center;
    text-transform: uppercase;
}

/* GAME UI when playing */
.game-container {
    width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: center;
    gap: 100px;

}

.weapon {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    border-width: 15px;
}

.weapon img {
    width: 150px;
}

.players-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.round-text {
    font-size: 50px;
    /* push it up between the HP bars */
    margin-bottom: 300px;
    font-weight: 700;
}

.player,
.computer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    
}

.stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bar {
    width: 200px;
    height: 50px;
    border: 2px solid black;
    background-color: white;
}

.dmg {
    background-color: #C44536;
}

/*
.player .dmg {
    width: 190px;
}

.computer .dmg {
    width: 150px;
}
*/

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

button {
    width: 200px;
    height: 50px;
    background-color: #F8DDA4;
    border: 0px;
    font-family: Inter;
    font-weight: 500;
}

.player .winner {
    animation-name: playerWinner;
    animation-timing-function: linear;
    animation-duration: 1s;
}

@keyframes playerWinner {
    0%   {background: yellow;}
    25%  {background: #DDF9C1;}
    50%  {background: yellow;}
    75%  {background: #DDF9C1;}
    100% {background: yellow;}
}

.computer .winner {
    animation-name: computerWinner;
    animation-timing-function: linear;
    animation-duration: 1s;
}

@keyframes computerWinner {
    0%   {background: red;}
    25%  {background: #DDF9C1;}
    50%  {background: red;}
    75%  {background: #DDF9C1;;}
    100% {background: red;}
}

.spin {
    animation-name: spin;
    animation-timing-function: linear;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}