@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --orange: #ff9700;
    --purple: #8c19ff;
}

body {
    margin: 0;
}

.large-button {
    width: 200px;
    height: 190px;
    /* position: absolute; */
    background: url(button_sprite.webp) no-repeat;
    background-position: -10px -12px;
    border: 0;
    display: block;
    -webkit-tap-highlight-color: transparent;
}

.large-button:active, .large-button.playing {
    background-position: -220px -12px;
}

.large-button-background {
    width: 188px;
    height: 174px;
    margin-top: 7px;
    margin-left: 6px;
    border-radius: 50%;
    /* position: absolute; */
    background-color: var(--orange);
    transition: background-color 0.5s;
}

.large-button-background.playing {
    background-color: var(--purple);
}

.center {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: 100lvh;
    flex-wrap: wrap;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    margin-bottom: 0;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 18px;
    text-align: center;
}

img {
    height: 125px;
}

.footer {
    position: fixed;
    bottom: -25px;
    text-align: center;
    width: 100lvw;
    /* height: 25px; */
    /* overflow: hidden; */
}
.cell {
    flex: 1 0 30%;
    margin: 25px 15px;
    text-align: center;
}

.protect {
    margin: auto;
    width: min-content;
}