html {
    font-family: system, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Segoe WP', Roboto, Ubuntu, Oxygen, Cantarell, 'Fira Sans', 'Helvetica Neue', Helvetica, 'Lucida Grande', 'Droid Sans', Tahoma, 'Microsoft Sans Serif', sans-serif;
    color: #fff;
    background: #142014;
}

body {
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
    padding: 1em 1em 4em;
}

h1 {
    margin-top: 2em;
    /*margin-bottom: 1em;*/
    font-weight: 500;
    font-size: 1.5em;
}

h2 {
    font-weight: 300;
    font-size: 1.1em;
}

ul {
    list-style: none;
    margin-block-start: 0.3em;
    padding: 0;
    font-weight: 100;
}

.flex {
    display: flex;
}

.relative{
    position: relative;
}
.personalLinks {
    position: absolute;
    bottom: 0;
    left: 0;
}

.alternateLinks{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.9em;
    border-left: #31455d solid 1px;
}

.alternateLinks div{
    padding: 0 1em;
    display: inline-block;
    border-right: #31455d solid 1px;
}

.alternateLinks a{
    color: #31455d;
    text-decoration: none;
}

.personalLinks img {
    width: 2em;
    height: 2em;
    background: white;
    border-radius: 8px;
    border: solid #142014;
}
.noBreak{
    word-break: keep-all;
}
.hidden {
    display: none;
}

.publication{
    margin-top: 2em;
    width: 100%;
}

.publication a{
    text-decoration: none;
    color: inherit;
}

.publication a:hover{
    color: darkseagreen;
}

.publication_header {
    color: #808080;
    margin-bottom: 0.3em;
}

.publication_header img{
    width: 12px;
    height: 12px;
    vertical-align: middle;
}

.publication_header span{
    margin-left: 0.2em;
    vertical-align: middle;
}

.w-full {
    width: 100%;
}

.max-w-50p {
    max-width: 50%;
}

.min-w-50p {
    min-width: 50%;
}

.w-50p {
    width: 50%;
}

.mt-2 {
    margin-top: 2em;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    border-radius: 10px; /* Скругление углов самого изображения */
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, transparent 50%, #142014 70%);
    border-radius: 10px; /* Скругление углов градиента */
}

@media only screen and (max-width: 600px) {
    body {
        /*font-size: 16px;*/

        .flex {
            display: block
        }

        .w-50p {
            width: 100%;
        }
    }
}