body {
    background-color: #0a0000;
    color: #8bac0f;
    font-family: 'Courier New', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 600px;
}

h1 {
    font-size: 15px;
    position: relative;
    top: 0;
    margin-bottom: 20px;
    font-style: normal;
}

h2 {
    font-size: 23px;
    margin-bottom: 32px;
    font-style: initial;
}

.image-container {
    align-items: center;
    width: 420px;
    max-width: 800px;

}

.construction {
    font-size: 13px;
    margin-bottom: 20px;
}

footer {
    margin-top: 20px;
    font-size: 12px;
}

/* Адаптивность */
@media (max-width: 600px) {
    h1 {
        font-size: 14px;
    }
    h2 {
        font-size: 16px;
    }
    .construction {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 13px;
    }
    h2 {
        font-size: 15px;
    }
    .construction {
        font-size: 11px;
    }
}