*{
    margin: 0;
    padding:0;
    text-align: center;
}

h1{
    background-color: #081b31;
    color:white;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
}
.choice{
    height: 165px;
    width:165px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choice:hover{
    cursor: pointer;
    background-color: black;
    opacity: 80%;
    
    
}

img{
    height:150px;
    width:150px;
    object-fit: cover;
    border-radius: 50%;
    
}
.choices{
    display:flex;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.scoreboard{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 2rem;
    font-size: 2rem;
}
#user-score,#comp-score{
    font-size: 4rem;
}

.msg-container{
    margin-top: 3rem;
}
#msg{
    background-color: #081b31;
    color: white;
    font-size: 2rem;
    text-align: center;
    display: inline;
    border-radius: 1rem;
    padding: 1rem;  

}

@media  only screen and (min-width: 375px) and (max-width: 430px){
    
    h1{
    background-color: #081b31;
    color:white;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    }
    .choice{
    height: 30px;
    width:30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.choices{
    display:flex;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}
img{
    height:70px;
    width:70px;
    object-fit: cover;
    border-radius: 50%;

    
}
.scoreboard{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    font-size: 1.5rem;
}
#user-score,#comp-score{
    font-size: 3rem;
}

.msg-container{
    margin-top: 2rem;
}
#msg{
    background-color: #081b31;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    display: inline;
    border-radius: 1rem;
    padding: 1rem;  

}

 }
