* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #335fa6;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px;
}

.logo {
    height: 50%;
    max-width: 50%;
    margin-bottom: 30px;
}

h1 {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 3px;
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-top: 5px;
}

.coming-soon {
    margin-top: 50px;
    font-size: 1.2rem;
    opacity: 0.8;
}

footer {
    text-align: center;

    padding: 25px;

    font-size: 0.8rem;
    color: #aaaaaa;

    border-top: 1px solid #333;
}

footer p {
    margin: 8px 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
