/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


#mini_image {
    position: absolute;
    z-index:99;
    top: 24px;
    left: 17px;
    width: 48px;
    height: 48px;
    display: none;
    background-image: url(../media/cover_vedeneev.jpg);
    background-size: cover;
    border:1px solid #fff;
    border-radius: 12px;
    cursor: pointer;
}

.background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000BF;
    -moz-background-size: cover;
    background-image: url(../media/cover_vedeneev.jpg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-position: center center;
    display: block;
}

.main {
    display: flex;
    width: 100vw;
    height: 100vh;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.wrapper {
    display: flex;
    width: min( calc(100vh * 0.72), 100vw );
    height: 100vh;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-end;
    align-items: center;
}

.content {
    width: 100%;
    height: 50vh;

    margin-bottom: 8vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-end;
    align-items: center;
}

.content .name {
    width: 100%;
    font-family: Playfair;
    font-size: min( calc(100vh * 0.72 * 0.16), 16vw);
    line-height: min( calc(100vh * 0.72 * 0.14), 14vw);
    text-align: center;
    color: red;
}

.content .description {
    width: 100%;
    font-family: arial;
    margin-top: 3vh;
    font-size: min( calc(100vh * 0.72 * 0.03), 3vw);
    text-shadow: 0px 0px 5px #000000;
    text-align: center;
    color: white;
}

.links {
    display: flex;
    margin-top: 3vh;
    width: 100%;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.links a {
    width: 24%;
    display: inline-block;
    font-family: Gilroy;
    font-size: min( calc(100vh * 0.72 * 0.03), 3vw);
    text-shadow: 0px 0px 5px #000000;
    color: white;
    text-decoration: none;
    text-align: center;
}

.links .icon {
    display: block;
    font-size: min( calc(100vh * 0.72 * 0.08), 8vw);
}
.links .link {
    display: block;
    text-decoration: underline;
    text-align: center;
}
