:root {
    --color-dark: oklch(0.145 0 0);
    --color-light: oklch(1 0 0);
    --color-accent: oklch(0.828 0.189 84.429);
}

body {
    position: relative;
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "GRAD" 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0;
    min-height: 100vh;
    color: var(--color-dark);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-light);
    background-image: url("bg.png");
    background-repeat: repeat;
    opacity: 0.05;
    z-index: -1;
}

.dammit-button {
    position: relative;
    background: var(--color-accent);
    border: 4px solid var(--color-dark);
    border-radius: 15px;
    font-size: 24px;
    padding: 15px 25px;
    cursor: pointer;
    color: var(--color-dark);
    animation: pulse 1.5s infinite;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 90%;
    padding: 0 15px;
    box-sizing: border-box;
}

h1, h2 {
    line-height: 1px;
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 48px;
}

.logo {
    margin-top: 45px;
    width: 80px;
    height: auto;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 28px;
    }

    .logo {
        width: 60px;
        margin-top: 35px;
    }

    .dammit-button {
        font-size: 18px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 20px;
    }

    .logo {
        width: 50px;
        margin-top: 30px;
    }

    .dammit-button {
        font-size: 16px;
        padding: 10px 16px;
    }
}