<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>We'll Be Back Soon</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    
    <style>
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #f4f6f8;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            text-align: center;
        }

        .container {
            max-width: 500px;
            padding: 30px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        h1 {
            margin-bottom: 10px;
            font-size: 28px;
        }

        p {
            margin: 10px 0;
            line-height: 1.5;
        }

        .status {
            margin-top: 20px;
            font-size: 14px;
            color: #888;
        }

        .spinner {
            margin: 20px auto;
            border: 4px solid #eee;
            border-top: 4px solid #3498db;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>USPA.org Will Be Back Soon</h1>
        <p>Sorry for the inconvenience, but our website is currently down for maintenance.</p>
        <p>We're working to get things back up and running as quickly as possible.</p>

        <p>Anyone needing to purchase a new membership can 
		<a href="https://uspa-my.sharepoint.com/:b:/g/personal/jsharp_uspa_org/IQAqw5tw-O-KSpL0fO5wdL6bAVWR8ovHZh0y1lXOPiUistU?e=eQqY6J" target="_blank">download this form</a> 
		and send the completed application to the email address or fax number listed in the top right corner.&nbsp;</p>

    </div>
</body>
</html>