/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background pattern */
body {
    height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f5f5f5;
    background-image:
        radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center container */
.container {
    text-align: center;
    padding: 20px;
}

/* Logo responsive */
.logo {
    max-width: 280px;
    width: 60vw;
    height: auto;
    margin-bottom: 20px;
	animation: pulse 2.5s ease-in-out infinite;
}

/* Text */
.text, .text a {
    color: #000;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.08em;
}
.text a { text-decoration: none; }

/* Footer */
.footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 0.75rem;
    opacity: 0.45;
    letter-spacing: 0.08em;
    pointer-events: none;
}

.footer a { color: #000; text-decoration: none; }

/* Larger screens */
@media (min-width: 768px) {
    .logo {
        max-width: 360px;
    }

    .text {
        font-size: 1.3rem;
    }
}

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