:root {
  --bg-color: #757580;
  /*--bg-color: #779FB5;*/
  /*--text-color: #000000;*/
  --text-color: #ffffff;
  /* --text-color: #0d1a0d; */
  --svg-text-color-filter: brightness(0) saturate(100%) invert(6%) sepia(6%)
    saturate(5275%) hue-rotate(71deg) brightness(92%) contrast(92%);

  --page-block-color: #ffffff;

  --main-color-1-1: #a44e37;
  --main-color-1-2: #bf6134;
  --main-color-1-3: #d7742f;
  --main-color-1-4: #e68c37;
  --main-color-1-5: #e5b04c;
}
@font-face {
  font-family: "Rodchenko W08";
  font-style: normal;
  font-weight: bold;
  src: url("/fonts/Rodchenko W08 Bold.ttf");
}
@font-face {
  font-family: "Rodchenko W08";
  font-style: normal;

  src: url("/fonts/Rodchenko W08 Regular.ttf");
}

:root,
button,
body {
  font-family: "Rodchenko W08";
  font-weight: 400;
}

@media (prefers-color-scheme: dark) {
  :root {
    --svg-text-color-filter: invert(1);
    --page-block-color: #333333;
  }
}

img {
  vertical-align: middle;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  font-size: 14px;
  color: var(--text-color);
}

body {
  /* backdrop-filter: blur(1px); */
  background-image: url("/img/2023-10-14_19.22.27.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

a {
  transition: 0.2s;
  color: var(--main-color-1-4);
  text-decoration: none;
}
b {
  font-weight: bold;
}

a:hover {
  color: var(--main-color-1-2);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/**********/

.page-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.main-page-contents {
  flex-flow: column;
}

.page-button {
  transition: 0.2s;
  border: 1px solid var(--main-color-1-4);
  border-radius: 10px;
}

.page-button:hover {
  border-color: var(--text-color);
  color: var(--text-color);
}

.page-button * {
  padding: 15px;
  font-size: 20px;
  /* color: white; */
}

.centered-info-block-container {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);

  border: 1px solid var(--main-color-1-4);
  border-radius: 10px;
  margin: 30px;
}

.images-container {
  display: grid;
  object-fit: cover;
}

.blurred-image,
.main-image {
  width: 100%;
  border-radius: 9px;
  transition: scale 0.2s;
  overflow: hidden;
}

.blurred-image-container {
  z-index: 1;
  grid-area: 1 / 1;
  border-radius: 9px;
  padding-bottom: 100px;
  margin-bottom: -100px;
  overflow: hidden;
}

.main-image-container {
  top: 0;
  z-index: 2;
  grid-area: 1 / 1;
}

.main-image:hover {
  scale: 1.025;
}

.blurred-image-container img {
  filter: blur(15px);
  /*scale: 2;*/
}

.name-container {
  margin-bottom: 10px;
}

.main-text-container {
  z-index: 3;
  margin: 5px 20px 15px 20px;
}

.description-container {
  font-size: 18px;
  font-weight: 200;
}
.description-container p {
  margin-bottom: 10px;
}

.season-name-container,
.additional-name-container {
  /* backdrop-filter: blur(1px); */
  text-align: center;
}

.season-name-container * {
  font-size: 70px;
  font-weight: 600;
  color: var(--main-color-1-4);
  /* --s: 2px 0 var(--main-color-1-2); */
  /* text-shadow: 2px 0 var(--main-color-1-2), -2px 0 var(--main-color-1-2),
    0 2px var(--main-color-1-2), 0 -2px var(--main-color-1-2); */
  -webkit-text-stroke: 1.5px var(--main-color-1-2);
}

.additional-name-container * {
  font-size: 45px;
}

.fm-names-container * {
  font-size: 30px;
  font-weight: 300;
}

.socials-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.social-button {
  margin: 5px;
  display: block;
  transition: scale 0.2s;
}

.social-button:hover {
  scale: 1.1;
}

@media (prefers-color-scheme: dark) {
  .social-icon {
    filter: invert(1);
  }
}

@media (max-width: 550px) {
  .centered-info-block-container {
    /*position: relative;*/

    width: calc(100% - 2 * 10px);
    margin: 10px;
  }

  .season-name-container * {
    font-size: 60px;
    /* font-weight: 500; */
    /* -webkit-text-stroke: 0.5px var(--main-color-1-2); */
  }

  .fm-names-container * {
    font-size: 25px;
    font-weight: 250;
  }
}

@media (min-width: 551px) {
  .centered-info-block-container {
    width: 500px;
    /*position: absolute;*/
    /*left: 50%;*/
    /*!*top: 50%;*!*/
    /*top: 10px;*/
    /*-webkit-transform: translate(-50%, 0);*/
    /*transform: translate(-50%, 0);*/
  }
}

.button {
  backdrop-filter: blur(100px);
  padding: 10px;
  border-radius: 5px;
  display: block;
  width: fit-content;
  margin: 5px;
  text-align: center;
}

.button-column {
  display: flex;
  flex-flow: column;
  align-items: center;
}
