* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
}

body {
    background: linear-gradient(180deg, #7d60a8, #F2F2F2);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: my-animation;
    animation-duration: 1s;
}

@keyframes my-animation {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

#main {
    width: 450px;
    margin: 16px;
    padding: 32px;
    padding-bottom: 0px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 24px;

}

.main-header {
    border: solid;
    background: #FFD55D;
    padding: 12px;
    border-radius: 24px;
    text-align: center;
    border: solid 4px #FFEDB9;
}

.choices {
    display: flex;
    justify-content: center;
    padding: 24px;
    justify-content: space-between;
}

.choice {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.choice:hover {
    background-color: #081b31;
    transform: scale(1.1);
    transition-duration: 0.5s;
}

.choice img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;

}

.score-board {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 60px;

}

.score {
    font-size: 30px;
}

#user-score,
#comp-score {
    font-size: 50px;
}



.msg-container {
    border: solid;
    background: #FFD55D;
    padding: 12px;
    border-radius: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 4px #FFEDB9;
    height: 105px;
    
}

.ftr {
    display: flex;
    text-align: center;
    align-items: end;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: auto;
    padding-top: 10px;
    font-size: 13px;

}