<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>K12 Maintenance</title>
    <link href="https://fonts.googleapis.com/css?family=Quattrocento+Sans:400,700" rel="stylesheet">
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
    <style>
        *,*:after,*:before{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;font-smoothing:antialiased;text-rendering:optimizeLegibility}html{width:100%;height:100%;padding:0}.container{display:block;padding:30px;margin:0 auto}@media (min-width: 1280px){.container{padding:120px}}body{margin:0;font-family:"Quattrocento Sans",sans-serif !important;font-size:1rem;color:#444343;width:100%;height:100%}h1{color:#015f82;font-size:38px;font-weight:700}.logo{margin-bottom:20px}p{font-size:24px;line-height:30px;margin:0 0 15px;max-width:100%}@media (min-width: 1024px){p{font-size:28px;line-height:34px}}.info-list{border-top:1px solid #d6e272;padding:15px 0;margin:0;list-style-type:none}.info-list .info-item{border:none;font-weight:700;display:block;border:none}@media (min-width: 1024px){.info-list .info-item{display:inline-block;list-style-type:none;text-align:left;padding:0 20px;border-left:1px solid #d6e272}.info-list .info-item:first-child{border-left:none;padding-left:0}.info-list .info-item:last-child{border-right:none}}footer{padding:30px 0;margin-top:30px;width:100%}footer>*{font-size:18px;line-height:24px}
    </style>
</head>

<body>
        <div class="container">
        <img class="logo" src="/k12_logo.png" width="143px" alt="K12 Logo">
        <h1>Maintenance in Progress</h1>
        <p>This site is currently unavailable.</p>
        <p>We apologize for any inconvenience
            and thank you for your patience.</p>

        <footer>
            <ul class="info-list">
                <li class="info-item">K12, Inc</li>
                <li class="info-item">2300 Corporate Park Drive</li>
                <li class="info-item">Herndon, VA 20171</li>
                <li class="info-item">Customer Support: 866.512.2273</li>
            </ul>
            <p class="copyright">Copyright &copy; <span class="current-year"></span> K12, Inc. All rights reserved. K12,
                as registered in the U.S. Patent and Trademark Office.</p>
        </footer>
</div>
<script>
//Update the title to reflect the current year
const current_year = new Date().getFullYear();
const current_year_title = document.querySelector(".current-year");
current_year_title.innerHTML = current_year;
</script>
</body>

</html>