html {
    font-family: "Quicksand", sans-serif;
}

.ac1 {
    color: #B4548B;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
}

.panel {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 90%;
    max-width: 400px;
    background-color: #C8D9E1;
    padding: 20px 40px;
    border-radius: 20px;
    gap: 20px;
}

.title {
    font-size: clamp(32px, 4vw, 100px);
}

.scores {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.play {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #70B6E5;
    color: white;
    padding: 5px 18px;
    border-radius: 20px;
    cursor: pointer;
}