body{
    background-image: url("assets/images/content/2.jpg");
    background-size: cover; /* Это необязательно, но полезно, чтобы изображение покрывало весь фон */
    background-repeat: no-repeat; /* Тоже необязательно, чтобы изображение не повторялось */
    background-position: center center; /* И это тоже, чтобы изображение было по центру */
}

.page-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-grow: 1;
    padding: 20px 0;
    box-sizing: border-box;
    max-width: 100%;
    min-height: 100vh; /* Добавили это */
}

.container {
    display: flex;
    width: 70%;
    max-width: 80%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff00;
    align-items: stretch; /* Добавили это */
}

.left, .right {
    flex-shrink: 0;
    width: 50px;
    background-color: #e9eff600;
    padding: 7.5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-content {
    flex-grow: 1;
    padding: 25px;
    background-color: #ffffff00;
    overflow-y: auto;
}

.left-one, .right-one {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
    padding: 11px 0px;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

.left-one a, .right-one a {
    text-decoration: none;
    color: #333;
    padding: 10px 26px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.left-one a:hover, .right-one a:hover {
    background-color: #d8e3ed;
}

.left-one img, .right-one img {
    width: 22px;
    height: 22px;
}

.left-two, .right-two {
    margin-top: auto;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #c8d3e0;
    font-size: 14px;
    color: #555;
}

.main-content h1 {
    color: #333;
    margin-bottom: 10px;
}

.main-content p {
    color: #555;
    line-height: 1.6;
}

.footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #eee;
    margin-top: 30px;
    font-size: 13px;
    color: #777;
}

.footer .socials {
    margin-top: 10px;
}

.footer .socials a {
    margin: 0 10px;
    color: #007bff;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
}

.footer .socials a img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.footer .socials a:hover img {
    filter: grayscale(0%);
}

.footer .socials a:hover {
    text-decoration: none;
}

.button-visit {
    background-color: #424242;
    color: white;
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 12px;
    position: relative;
    bottom: -20px;
    transition: border-radius 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.button-visit:hover {
    border-radius: 5px;
    background-color: #ffffff;
    color: #424242;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.285);
}
.anti-link{
    color: black;
    text-decoration: none;
}
.airo{
    width: 20vh; /* Ширина 50% от родительского элемента */
    height: auto;
}
.vkshit{
    color: #ffffff00;
}