<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Keck Graduate Institue</title>
    <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
    <style>
        body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
            background-color: black;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            padding: 0 20px;
        }
        .container {
            text-align: center;
            max-width: 900px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .logo {
            text-align: left;
            width: 100%;
        }
        .logo img {
            width: 250px;
            padding: 20px 0;
        }
        .content {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        .video-container, .text-container {
            width: 50%;
            padding: 20px;
        }
        .video-container video {
            width: 100%;
            height: auto;
           
        }
        .text-container {
            text-align: left;
             line-height: 1.5;
            font-size: 18px;
        }
        .text-container h1, .text-container p {
            margin: 0 0 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .content {
                flex-direction: column;
            }
            .video-container, .text-container {
                width: 100%;
                padding: 10px;
            }
            .logo img {
                width: 120px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo">
            <img src="Logo_KGI_Wordmark_Negaitive.png" alt="Keck Graduate Institute Logo"> 
        </div>
        <div class="content">
            <div class="video-container">
                <video autoplay loop muted playsinline>
  <source src="KGI-Molecule-Logo.mp4" type="video/mp4">
</video>
            </div>
            <div class="text-container">
                <p>It's not here yet, but we'll let you in on a secret. It's coming really, really soon. So sit tight and check back on October 28. We think you’ll like what you see.</p>
                <p>Really excited to get in touch with us?</p>
                <p>Send us an email at <a href="mailto:marketing@kgi.edu" style="color: lightgray;">marketing@kgi.edu</a> for for admissions information email <a href="mailto:admissions@kgi.edu" style="color: lightgray;">admissions@kgi.edu</a></p>
                <p>Or follow us at @keckgrad on <a href="https://www.facebook.com/keckgraduateinstitute" target="_blank" style="color: lightgray;">Facebook</a> and <a href="https://www.instagram.com/keckgrad" target="_blank" style="color: lightgray;">Instagram</a> for updates and news.</p>

            </div>
        </div>
    </div>
</body>
</html>
