:root {
    --color-primary: #59cc00;
    --color-green: #59cc00;
    --color-red: #e53935;
    --color-blue: #1e88e5;
    --color-yellow: #fba02d;
    --color-orange: #fb8c00;
    --color-purple: #8e24aa;
    --color-pink: #e91e63;
    --color-teal: #009688;

    --color-bg: #eee;
    --color-bg-dark: #1c1c1c;
    --color-bg-dark-alpha: #1c1c1cee;
    --color-text-light: #eee;
    --color-text-dark: #1d3310;

    --gradient-buffbuff: linear-gradient(to right, #106D87, #83CA9F);
}

.chau_philomene {
    font-family: "Chau Philomene One", Arial;
    font-weight: 400;
    font-style: normal;
}

.dongle {
    font-family: "Dongle", Arial;
    font-weight: 400;
    font-style: normal;
}

.hanken_grotestk {
    font-family: "Hanken Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    margin: 0px;
    font-family: "Hanken Grotesk", sans-serif;
    touch-action: manipulation;
}

body,
html {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

* {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, opacity;
}

.anim-hover-color {
    color: #1D3310;
    background-image: var(--gradient-buffbuff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #1D3310;
    background-position: left;
}

.anim-hover-color:hover {
    background-position: right;
    -webkit-text-fill-color: transparent;
}

.buffbuff {
    background: var(--gradient-buffbuff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.style-button {
    position: relative;
    overflow: hidden;
    padding: 12px 24px;
    border: none;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Chau Philomene One";
    animation: pulse 1.5s infinite;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transition: filter 0.25s ease-in-out;
    line-height: 20px;
}

.style-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

a.style-button {
    display: inline-block;
    text-decoration: none;
}

.style-button.green {
    background-color: var(--color-green);
}

.style-button.red {
    background-color: var(--color-red);
}

.style-button.blue {
    background-color: var(--color-blue);
}

.style-button.yellow {
    background-color: var(--color-yellow);
}

.style-button.orange {
    background-color: var(--color-orange);
}

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

.style-button.pink {
    background-color: var(--color-pink);
}

.style-button.teal {
    background-color: var(--color-teal);
}

.style-button:hover {
    filter: brightness(1.2)
}

.style-button.inverted {
    background-color: transparent;
    border: 3px solid white;
}

.style-button .ripple {
    position: absolute;
    border-radius: 50%;
    transform: translateZ(0), scale(0);
    animation: style-button-ripple-animation 0.6s linear;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
}

.style-button:not(.style-button-icon) i {
    margin-left: -10px;
    margin-right: 10px;
}

.style-button.style-button-icon i {
    margin-left: -10px;
    margin-right: -10px;
}

.froggy-title span {
    display: inline-block;
    transform-origin: bottom;
    z-index: 10;
}

.froggy-title .frog {
    width: 30px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -5px;
    z-index: 300;
    transform: scale(1.01);
}

@keyframes style-button-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.desktop-only {
    display: none;
}

.tablet-only {
    display: none;
}

@media (min-width: 768px) {
    .mobile-only {
        display: none;
    }

    .tablet-only {
        display: block;
    }
}

@media (min-width: 1024px) {
    .tablet-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.025);
    }

    100% {
        transform: scale(1);
    }
}