* {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    border: none;
    outline: none;
    transition: background-color 0.6s, color 0.3s, border 0.5s;
}

body {
    background: #fdf2f2;
    align-items: center;
    text-align: center;
}

header {
    display: flex;
    justify-content: center;
}

.toogleMode {
    background: #292727;
    color: #fdf2f2;
}

.changeMode {
    background: #292727;
    color: #fdf2f2;
    padding: 6px;
    height: 3rem;
    width: 7rem;
    border-radius: 1.5rem;
    position: absolute;
    top: 10px;
    left: 10px;
    border: 4px solid transparent;
}

.changeMode:hover {
    background: #fdf2f2;
    color: #292727;
    border: 4px solid #292727;
}

h1 {
    margin-top: 10px;
    background: #292727;
    color: #fdf2f2;
    padding: 8px;
    border-radius: 1.5rem;
    padding-left: 20px;
    padding-right: 20px;
}

.resetBTN {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 3rem;
    width: 7rem;
    padding: 5px;
    font-size: .9rem;
    border-radius: 1.5rem;
    background: #292727;
    color: #fdf2f2;
}

.resetBTN:hover {
    background: #fdf2f2;
    color: #292727;
    border: 4px solid #292727;
}

.choiceBox {
    display: flex;
    justify-content: center;
}

.choices {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    width: 45%;
}

.choice {
    height: 6.5rem;
    width: 6.5rem;
    background: #292727;
    color: #ffffff;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 6px solid transparent;
}

.choice:hover {
    background: #fdf2f2;
    color: #292727;
    border: 6px solid #292727;
}

.scoreBoard {
    display: flex;
    justify-content: center;
}

.score_1 {
    margin-right: 1.5rem;
}

.score {
    background: #292727;
    color: #fdf2f2;
    padding: .9rem;
    font-size: 1.2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-radius: 1rem;
}

#userScore, #compScore {
    margin-bottom: .3rem;
}

.userText, .compText {
    font-size: 1.2rem;
    background: #fff;
    color: #292727;
    padding: 5px;
    font-weight: bold;
    border-radius: .5rem;
}

.msgContainer {
    display: flex;
    justify-content: center;
}

.msg {
    background: #292727;
    color: #fdf2f2;
    height: 4.5rem;
    width: 40%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
}


@media (max-width: 1024px) { 
    .choices {
        width: 60%;
    }

    .msg {
        width: 60%;
    }
}

@media (max-width: 480px) { 
    .changeMode {
        height: 4rem;
        width: 5rem;
    }

    h1 {
        height: 7rem;
        width: 12rem;
    }

    .resetBTN {
        height: 5rem;
        width: 5rem;
    }

    .choices {
        width: 80%;
    }

    .msg {
        width: 80%;
    }
}