/* ===== ОСНОВНОЙ ФОН (плавное слияние с краями изображения) ===== */
body {
    margin: 0;
    height: 100vh;
    background: radial-gradient(circle at center, #f2f2f2 0%, #fafafa 50%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* ===== КАРТИНКА ===== */
.content img {
    max-width: 90vw;     /* не больше 90% ширины окна */
    max-height: 85vh;    /* не выше 85% высоты окна */
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* ===== НАДПИСЬ ВНИЗУ СПРАВА ===== */
.footer {
    position: fixed;
    bottom: 10px;
    right: 14px;
    text-align: right;
}

/* ===== ССЫЛКИ ===== */
a {
    text-decoration: none;
    color: black;
}
a:visited {
    color: black;
}
a:hover {
    color: black;
    text-decoration: underline;
}

/* ===== ШРИФТЫ ===== */
.small {
    text-decoration: none;
    color: black;
    font-weight: normal;
    font-family: Verdana, Arial;
    font-size: 9pt;
}

.menu {
    text-decoration: none;
    color: black;
    font-weight: normal;
    font-family: Verdana, Arial;
    font-size: 14pt;
}

.main {
    text-decoration: none;
    color: black;
    font-weight: normal;
    font-family: Verdana, Arial;
    font-size: 12pt;
}

.large {
    text-decoration: none;
    font-weight: bolder;
    color: black;
    font-family: Verdana, Arial;
    font-size: 16pt;
}

.large_Invert {
    text-decoration: none;
    font-weight: bolder;
    color: white;
    font-family: Verdana, Arial;
    background: white;
    font-size: 16pt;
}

.menu:hover {
    text-decoration: underline;
    color: black;
    font-weight: normal;
    font-family: Verdana, Arial;
    font-size: 14pt;
}

.asciiart { 
    line-height: 7px;
    font-family: "Courier New", "Courier", "mono";
    font-size: 11px;
}
