*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.header{
    font-size: 20px;
    background-color: rgb(234, 109, 109);
    color: bisque;
    text-align: center;
    padding: 25px;
}

.rounds{
    margin: 10px auto;
    color: bisque;
    padding: 40px;
    display: flex;
    justify-content: center;
    max-width: 700px;
}

.rounds input{
    border:0;
    outline: 0;
    border-radius: 20px;
    width: 100%;
    color: rgb(231, 91, 91);
    padding: 20px;
    background: bisque;
    font-size: 20px;

}

.options{
    border-radius: 20px;
    max-width: 700px;
    background-color: rgb(231, 91, 91);
    display: flex;
    margin: 20px auto;
    justify-content: space-between;
    padding: 40px;
}

.options button{
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    background-color: bisque;
    padding: 12px 12px;
}

.scoreboard{
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto;
    color: bisque;
    font-size: 25px;
    justify-content: space-between;
}

.you, .computer, .matches{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-basis: 30%;
    border-radius: 35px;
    background-color: rgb(231, 91, 91);
    padding: 15px;
    margin: 6px;
}

.matches{
    background-color: rgb(234, 109, 109);
} 

.output{
    font-size: 30px;
    background-color: bisque;
    margin: auto auto;
    color: rgb(231, 91, 91);
    padding: 20px;
    display: flex;
    justify-content: center;
    max-width: 500px;
    border-radius: 500px;
}
