*{
    margin: 0;
    padding: 0;
    font-family: dosis;
}

body{
    background-color: #ececec;
    cursor: none;
}

.dot{
    background-color: #2828ff;
    height: 20px;
    width: 20px;
}

.outline{
    background-color: #2828ff;
    opacity: 0.4;
    height: 40px;
    width: 40px;
}

.dot, .outline {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

h1{
    background-color: black;
    color: white;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.Choices-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    height: 300px;
}


img{
    height: 160px;
    width: 160px;
    object-fit: cover;
    border-radius: 80px;
}

.choices{
    display: flex;
    transition: 0.04s ease-in-out;
}
.choices:hover{
    scale: 1.055;
    border-radius: 90px;
    cursor: none;
}

.score-board{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.user-score{
    text-align: center;
    font-size: 40px;
}

.computer-score{
    text-align: center;
    font-size: 40px;
}

.result-container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    margin-top: 30px;
}

.result{
    background-color: rgb(0, 0, 0);
    color: white;
    font-size: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 400px;
    transition: 0.04s ease-in-out;
}

.result:hover {
    scale: 1.04;
    cursor: none;
}

.clearBtnContainer{
    display: flex;
    justify-content: center;
    align-items: center;
}
.clearBtn{
    height: 55px;
    width: 150px;
    border-radius: 10px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 35px;
    cursor: none;
    scale: 1;
}.clearBtn:hover{
    scale: 1.066;
}