<style>

body {
    margin: 0;
    padding: 20px 0;
    background-color: white;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

.page {
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
}

.box {
    border: 1px solid black;
    margin-bottom: 25px;
}

.black {
    background-color: black;
    color: white;
}

.header {
    font-size: 2.5em;
    padding: 10px;
    text-align: center;
}

.header-subtitle {
    font-size: 0.66em;
    color: #ff69b4;
    font-weight: bold;
    margin-top: 8px;
}

.epigraph {
    font-size: 1.5em;
    padding: 10px 0;
}

.columns {
    display: flex;
    gap: 0;
}

.column {
    width: 50%;
    box-sizing: border-box;
}

.black-text {
    background-color: black;
    color: white;
    font-size: 1.65em;
    padding: 15px;
    box-sizing: border-box;
    height: 100%;
}

.info {
    font-family: Verdana, Arial, sans-serif;
    padding: 20px;
    font-size: 1em;
    line-height: 1.4;
}

.current {
    padding: 20px;
    box-sizing: border-box;
    line-height: 1.4;
}

.current h2 {
    text-align: center;
    margin-top: 0;
}

.current ul {
    font-size: 1.4em;
}

.current a {
    font-size: 0.8em;
    color: blue;
}

.images-left {
    width: 35%;
    padding: 10px;
    box-sizing: border-box;
}

.images-right {
    width: 65%;
    padding: 10px;
    box-sizing: border-box;
}

.img {
    max-width: 100%;
    height: auto;
}

.left-image {
    width: 98%;
    margin-bottom: 10px;
}

.right-image {
    width: 100%;
    border: 1px solid black;
    margin-bottom: 15px;
}


.image-link {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.image-link .right-image {
    display: block;
    width: 100%;
    margin-bottom: 0;
}

.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
}

.image-text a {
    color: blue;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
```



.footer {
    text-align: center;
    padding: 20px;
}

.footer hr {
    width: 25%;
}

@media screen and (max-width: 700px) {

    body {
        padding: 10px 0;
    }

    .header {
        font-size: 1.55em;
        padding: 10px 5px;
    }

    .header-subtitle {
        font-size: 0.72em;
    }

    .epigraph {
        font-size: 1.2em;
        padding: 10px;
    }

    .columns {
        display: block;
    }

    .column {
        width: 100%;
    }

    .black-text {
        font-size: 1.25em;
    }

    .info {
        font-size: 0.95em;
        padding: 15px;
    }

    .current {
        font-size: 0.95em;
        padding: 15px;
    }

    .current h2 {
        font-size: 1.4em;
    }

    .current ul {
        font-size: 1.25em;
        padding-left: 25px;
    }

    .images-left,
    .images-right {
        width: 100%;
        padding: 10px;
    }

    .left-image {
        width: 100%;
    }

}

</style>