@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

body {
    margin: 0;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #825CFF;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
}

h1 {
    color: azure;
}

h5 {
    color: #bca3f6;
}

.popit {
    box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.25),
        -8px -8px 12px 0 rgba(255, 255, 255, 0.3);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pieces {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.circle {
    cursor: pointer;
    width: 16vw;
    height: 16vw;
    max-width: 40px;
    max-height: 40px;
    margin: 3px;
    border-radius: 50%;
    transition: 0.5s;
    box-shadow: inset 8px 8px 8px rgba(255, 255, 255, 0.3),
        inset -8px -8px 8px rgba(0, 0, 0, 0.25);
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.pressed {
    box-shadow: inset 8px 8px 8px rgba(0, 0, 0, 0.25),
        inset -8px -8px 8px rgba(255, 255, 255, 0.3);
}

.r {
    background-color: #f23c39;
}

.o {
    background-color: #fb8f17;
}

.y {
    background-color: #fcf620;
}

.g {
    background-color: #69d437;
}

.b {
    background-color: #3cc1f6;
}

.p {
    background-color: #bca3f6;
}