html {
    font-size: calc(0.5em + 0.5vh);
}

body {
    background: #030305;
    margin: 0;

    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.container {
    box-sizing: border-box;
    min-height: 100vh;

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

    padding: 4em;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4em;
}

@media (max-width: 48em) {
    .header {
        flex-direction: column;
    }
}

.header-title {
    color: #ffffff;
    font-size: 3.875rem;
    font-weight: 600;
    text-align: center;
    
    margin: 0;
}

.logo {
    width: 8em;
    height: 8em;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 4em;
}

.illustration {
    box-sizing: border-box;

    width: 768px;
    max-width: 80vw;
    
    padding: 4em 4em 0 4em;
    border: 1px solid #707375;
    border-radius: 1em 0.5em 0.5em 1em;
}

.notice {
    color: #9c9fa1;
    font-size: 1em;
    text-align: center;

    margin: 0;
}

.footer {
    color: #707375;
    font-size: 1em;
}

.status-link {
    color: #0087ff;
    font-size: 1em;
    text-decoration: none;
    
    padding-left: 4em;
}

.terms-link {
    color: #0087ff;
    font-size: 1em;
    text-decoration: none;
    
    padding-left: 2em;
}