:root {
    --gold: #FFD700;
    --dark: #232323;
    --light: #ece6e8;
}

body {
    margin: 0;
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light);
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
}

.center {
    text-align: center;
}

.mono {
    font-family: "SUSE Mono", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 11px;
    background-color: var(--dark);
    color: var(--light);
    border-radius: 12px;
    transition: background-color 0.3s;
}

.shop a {
    color: var(--light);
    transition: color 0.3s;
}

.shop a:hover {
    color: var(--dark);
}

.shop:hover {
    background-color: var(--gold);
}

.shop:hover .dot {
    background-color: var(--dark);
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 0.9em;
}

.lead {
    margin: 5px auto;
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 1.8em;
    width: 66%;
    text-align: center;
}