@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
@media screen {
  :root {
    --font-inverse: #f0f0f0;
    --bg-dark: #606060;
    --bg-light: #fefefe;
    --bg-header: #181818;
    --font-primary: black;
    --color-accent: #b80000;
    --content-width: 90vw;
    --font-standard: 24px;
    --font-big: 32px;
    --font-small: 18px ;
  }
  * {
    caret-color: transparent;
    font-family: Roboto;
    font-weight: normal;
    line-height: 150%;
    font-size: var(--font-standard);
    flex-shrink: 0;
    margin: 0;
    text-align: justify;
    word-break: break-word;
    -ms-word-break: break-all;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
  }
  .font-big {
    font-size: var(--font-big);
  }
  .font-small {
    font-size: var(--font-small);
    line-height: 100%;
  }
  .filler {
    width: 100%;
    height: 100%;
    flex: 1 50px;
  }
  .font2 {
    font-family: Lora;
    font-weight: bold;
  }
  .bg-dark {
    background-color: var(--bg-dark);
    color: var(--font-inverse);
  }
  .bg-light {
    background-color: var(--bg-light);
  }
  .logo {
    background-image: url("/media/main/svg/logo-white.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .logo-black {
    background-image: url("/media/main/svg/logo-black.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .block-title {
    text-align: center;
    text-decoration-line: underline;
    margin-left: auto;
    margin-right: auto;
  }
  #main.content {
    justify-content: start;
    align-items: center;
  }
  .content {
    width: var(--content-width);
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
  }
  .flex {
    display: flex;
  }
  .flex-centered {
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  .flex-column {
    display: flex;
    flex-direction: column;
  }
  .flex-directed {
    display: flex;
    justify-content: space-between;
    align-content: space-between;
  }
  .desc {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 80%;
    text-align: justify;
  }
  .stylish-line {
    position: absolute;
    width: 2px;
    height: 100%;
    transform: translateX(-50px);
    background-color: black;
  }
  .flex-reverse {
    flex-direction: row-reverse;
  }
  a {
    font-size: var(--font-standard);
    color: var(--font-inverse);
    text-decoration: none;
  }
  .anchor {
    position: relative;
    width: 1px;
    height: 1px;
  }
  #main {
    flex-grow: 1;
  }
  .zoomable {
    cursor: pointer;
  }
  .copy > div {
    cursor: pointer;
    text-decoration: underline;
  }
  .img-cover img {
    width: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 980px) and (orientation: portrait) {
  :root {
    --header-height: 18vw;
    --font-standard: 4vw;
    --font-big: 6vw;
    --content-width: 90vw;
    line-height: 6vw;
  }
  .block-title {
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
  .anchor {
    top: calc(var(--header-height) * -1);
  }
}
@media screen and (max-width: 980px) and (orientation: landscape) {
  :root {
    --header-height: 15vh;
    --font-standard: 4vh;
    --font-big: 6vh;
    --content-width: 90vw;
    line-height: 6vh;
  }
  .block-title {
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
  .anchor {
    top: calc(var(--header-height) * -1);
  }
}
@media screen and (min-width: 980px) {
  :root {
    --header-height: 100px;
  }
  body {
    --content-width: 900px;
    --font-standard: 14px;
    --font-big: 20px;
    background-color: unset;
    line-height: 150%;
  }
  .block-title {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .flex-gapped {
    gap: 20px;
  }
  .anchor {
    top: -200px;
  }
}
@media screen and (max-width: 1400px) {
  .content {
    width: var(--content-width);
    max-width: 1400px;
  }
  * {
    font-size: var(--font-standard);
  }
  .font-big {
    font-size: var(--font-big);
  }
}
@media screen and (min-width: 1400px) {
  body {
    --font-standard: 24px;
    --font-big: 32px;
    --content-width: 1400px;
  }
  * {
    font-size: var(--font-standard);
  }
  .font-big {
    font-size: var(--font-big);
  }
  .flex-gapped {
    gap: 50px;
  }
}

/*# sourceMappingURL=main.css.map */
