.container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 0vh;
            background-color: transparent;
        }

        .infinity-btn {
            /* Styling based on your preferred aesthetic */
            background: #000000;
            color: #0088cc;
            border: 1px solid #0088cc;
            border-radius: 8px;
            padding: 12px 24px;
            text-decoration: none;
            font-family: sans-serif;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            
            /* Center alignment for the text inside the link-button */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            line-height: 1.2;
        }

        .infinity-btn:hover {
            background-color: #0088cc;
            color: white;
            box-shadow: 0 0 15px rgba(0, 136, 204, 0.6);
            transform: translateY(-2px);
        }

        .infinity-btn .subtext {
            font-size: 10px;
            font-weight: normal;
            opacity: 0.8;
            margin-top: 4px;
            text-transform: lowercase;
        }
#loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}