@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

:root{
    --primary-color: 
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #333;
}

header {
    width: 100%;
    padding: 10px 0;
    background-color: #930404;
    color: white;
    text-align: center;
    font-size: 0.4rem;
    position: fixed;
    top: 0;
    left: 0;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.maintenance {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    padding: 0;
}

footer {
    width: 100%;
    font-size: 0.2rem;
    padding: 10px;
    text-align: center;
    background-color: #333;
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
}
