*{
    font-family: 'Poppins', sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF9DE;
    flex-direction: column;
    min-height: 100vh; /*places the entire body in the center of the screen*/
    overflow: hidden; /* Disable scrolling */
}

button{
    background: none;
    border-radius: 50px;
    border-color: #E48F4B;
    padding: 10px 30px;
}

button img{
    max-width: 50px;
    height: 50px;
}

button:hover{
    transform: scale(1.1);
    background-color: #FFB469;
}

.result{
    justify-content: column;
    max-width: max-content;
    white-space: nowrap;
}

.winner{
    text-align: center;
}

.running-score{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
}

footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #e48f4b;
    text-align: center;
    padding: 10px;
}