@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
body {
    background: #3AE307;
    background: radial-gradient(circle, rgba(58, 227, 7, 1) 0%, rgba(255, 150, 0, 1) 100%);
    text-align: center;
    font-family: "Rubik", sans-serif;
}

button {
    font-size: 24pt;
    border-radius: 16px;
    background-color: #e3710770;
    padding: 24px;
    width: 20%;
}

.sec {
    border: 2px orange solid;
    background-color: rgba(255, 166, 0, 0.70);
    padding: 16px;
    font-size: 400%;
}

.score {
    font-size: 24pt;
    color:#0080c0;
}

.flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px; /* haha yukari */
    padding: 16px;
}

.side1 {
    border: 1px outset blue;
    border-radius: 4px;
    background-color: rgba(127, 255, 212, 0.3);
    text-align: left;
    width: 50%;
    height: auto;
    margin: 0 auto;
    padding-left: 32px;
}

.side2 {
    border: 1px inset red;
    background-color: rgba(255, 127, 80, 0.3);
    width: 50%;
    height: auto;
}

.snae {
    animation: snae 1s ease;
}

@keyframes snae {
    0% {
        left: 0px;
    }
    25% {
        left: 50px;
    }
    75% {
        left: -50px;
    }
    100% {
        left: 0px;
    }
}



/*
SPEECH BUBBLE SHIT
*/
.speech-bubble {
    position: relative;
    background: #0080c0;
    border-radius: .4em;
    max-width: 10%;
    margin: 0 auto;
    padding: 20px;
    margin-top: 16px;
    margin-bottom: 32px;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 27px solid transparent;
    border-top-color: #0080c0;
    border-bottom: 0;
    margin-left: -27px;
    margin-bottom: -27px;
}