/* set the main background */
:root {
    --wh-color-bg-main: rgb(237,233,233);
}

/* make the border for images transparent with a 5px radius */
.article__img {
    border-radius: 5px !important;
    border: none;
    display: block;
    margin: auto;
}

/* тень заголовка первого уровня */
h1 {
  text-shadow: 1px 1px #bfd7de;
}

/* выбран шрифт "Times New Roman" */
.p1 {
  font-family: "Times New Roman", Times, serif;
}

/* отображение непосещенной ссылки
a:link {
  color: #226078;
}
 */

/* цвет ссылки при наведении мыши */
a:hover {
  color: #11a4b8;
}

/* selected link */
a:active {
  color: #21608a;
}