

.td {font-size: 1.0vw;
    padding: 5px 0px;
}

.menu-button {                              /* computer */
    position: relative;
    background: rgb(0, 55, 55);
    border: 3px solid green;
    border-radius: 10px;
    left:2.0%;    top:0%;
    width:96%;    height:4vh;
    font-size: 1.4vw; color: white;
    vertical-align: middle;
    padding: 0.0% 5.0%;
    margin-bottom: 3%;
    overflow: hidden;
}


.link {                                   /* mobile */
    link:  brown;
    vlink: brown;
    alink: brown;
    color: brown;
    text-decoration: none;
}
.link:hover {
    color: red;
    text-decoration: none;
}

.link1 {
    color: lightgray;
    font-size: 1.2vw;
    text-decoration: none;
    vertical-align: bottom;
    display: flex; align-items: center;
    vertical-align: middle;
 }
.link1:link { color: lightgray; }
.link1:hover { color: lightyellow; font-size: 1.25vw;
               text-decoration: none }
.link1:active { color: brown; }


.link2 {
    color: white;
    font-size: 1.1vw;
    text-decoration: none;
    vertical-align: middle;
    text-align: center;
    display: flex; align-items: center;
 }
.link2:link { color: lightgray; }
.link2:hover { color: gray; font-size: 1.15vw;
               text-decoration: none }
.link2:active { color: brown; }


.link-menu {
    color: white;
    font-size: 1.0vw;
    text-decoration: none;
    vertical-align: middle;
    text-align: ;
    display: flex; align-items: center;
 }
.link-menu:link { color: ; }
.link-menu:hover { color: rgb(200,200,70); font-size: 0.95vw;
                   text-decoration: none }
.link-menu:active { color:; }


.link_date {
    color: white;
    font-size: 0.9vw;
    text-decoration: none;
    vertical-align: middle;
    text-align: center;
    display: flex; align-items: center;
 }
.link_date:link { color: white; }
.link_date:hover { color:rgb(250,200,200);; font-size: 1.0vw; }
.link_date:active { color: white; }








.link_t {                                /* mobile */
    link:  white;
    vlink: white;
    alink: white;
    color: white;
    text-decoration: none;
}

.link_t:hover {
    color: red;
    text-decoration: none;
}

.link_w {                                /* mobile */
    link:  white;
    vlink: white;
    alink: white;
    color: white;
    text-decoration: none;
}

.link_w:hover {
    color: yellow;
    text-decoration: none;
    text-shadow: -2px 1px 4px black;
    font-size: 0.95vw;
}

.link-b {                                /* mobile */
    link:  black;
    vlink: black;
    alink: black;
    color: black;
    text-decoration: none;
}

.link-b:hover {
    color: red;
    text-decoration: none;
}


/* =============== EFFECTS ====================== */


/* -------------------------------------- */
.scale-size {
    transform: scale(1.0)
}
.scale-size:hover {
    transition: 0.5s;         /* Время эффекта */
    transform: scale(1.1);    /* Увеличиваем масштаб */
}
/* -------------------------------------- */
.scale-size-small {
    transform: scale(1.0)
    border: 0px solid white;
}
.scale-size-small:hover {
    transition: 0.3s;         /* Время эффекта */
    transform: scale(0.9);    /* Увеличиваем масштаб */
    border: 0px solid gray;
}
/* ---------------image----------------------- */
.scale-size-big {
    transform: scale(1.0)
    -webkit-transform-origin: top;
}
.scale-size-big:hover {
    border: 2px solid white;
    transition: 1.8s;         /* Время эффекта */
    transform: scale(1.7);    /* Увеличиваем масштаб */
    -webkit-transform-origin: top;

}
/* ---------------schede----------------------- */
.scale-size-big1 {
    transform: scale(1.0)
    -webkit-transform-origin: top;
}
.scale-size-big1:hover {
    border: 2px solid white;
    transition: 1.8s;         /* Время эффекта */
    transform: scale(1.7);    /* Увеличиваем масштаб */
    -webkit-transform-origin: top;

}
/* -------------------------------------- */
.scale-border {
       border: 0px solid white;
}
.scale-border:hover {
       transition: 0.2s;        /* Время эффекта */
       border: 2px solid white; /* Помещаем рамку */
}

[data-tooltip] {
    position: relative; /* Относительное позиционирование */
   }
[data-tooltip]::after {
    content: attr(data-tooltip); /* Выводим текст */
    position: absolute; /* Абсолютное позиционирование */
    width: 300px; /* Ширина подсказки */
    left: 0; top: 0; /* Положение подсказки */
    background: #3989c9; /* Синий цвет фона */
    color: #fff; /* Цвет текста */
    padding: 0.5em; /* Поля вокруг текста */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Параметры тени */
    pointer-events: none; /* Подсказка */
    opacity: 0; /* Подсказка невидима */
    transition: 1s; /* Время появления подсказки */
   }
[data-tooltip]:hover::after {
    opacity: 1; /* Показываем подсказку */
    top: 2em; /* Положение подсказки */
   }
