*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg,#1d2671,#c33764);

    font-family: Arial, sans-serif;
}

.container{

    width: 420px;

    background: white;

    padding: 30px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

h1{
    margin-bottom: 30px;
    color: #222;
}

.score-board{

    display: flex;

    justify-content: space-around;

    margin-bottom: 30px;
}

.score-box{

    background: #f2f2f2;

    padding: 15px 25px;

    border-radius: 15px;
}

.score-box h2{

    font-size: 35px;

    color: #c33764;
}

.buttons{

    margin-bottom: 30px;
}

.btn{

    padding: 15px 20px;

    margin: 10px;

    border: none;

    border-radius: 12px;

    background: #1d2671;

    color: white;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s;
}

.btn:hover{

    background: #c33764;

    transform: scale(1.05);
}

.result-box{

    margin-top: 20px;
}

#resultText{

    margin-bottom: 10px;

    color: #222;
}

#choiceText{

    color: #555;

    font-size: 18px;
}