html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 100%;
  margin: 0;
  padding: 0;
}

*,
::after,
::before {
  box-sizing: inherit;
  -webkit-box-sizing: inherit;
}

html,
body {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13pt;
  color: #dadada;
  display: flex;
  width: 100%;
  position: relative;
}

body::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(135deg, #44413ac7, #000000d6);
  background-attachment: fixed;
  background-blend-mode: soft-light;
  z-index: -1;
}

body {
  /* background-color: #373531; */
  background-image: url(../img/tim-mossholder-ztgxL5kmABg-unsplash-4k.jpg);
  background-size: 4000px;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0px;
  padding: 3px;
}

a {
  color: #ffffff;
  text-decoration: none;
}

.splash-container {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  width: 90%;
  max-width: 790px;
  min-height: 99vh;
  height: 100%;
  max-height: 50vh;
}

.logo {
  width: fit-content;
  /* background-image: url("../img/ukielska.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  */

  /* for webkit-based browsers */
  -webkit-mask-image: linear-gradient(to top, black 0%, black 100%),
    linear-gradient(to top, transparent 0%, black 100%),
    linear-gradient(to right, transparent 0%, black 100%),
    linear-gradient(to bottom, transparent 0%, black 100%),
    linear-gradient(to left, transparent 0%, black 100%);
  -webkit-mask-position: center, top, right, bottom, left;
  -webkit-mask-size: 100% 100%, 100% 40px, 40px 100%, 100% 40px, 40px 100%;
  -webkit-mask-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  -webkit-mask-composite: source-out, source-over, source-over, source-over;

  /* for browsers which have implemented the official spec */
  mask-image: linear-gradient(to top, black 0%, black 100%),
    linear-gradient(to top, transparent 0%, black 100%),
    linear-gradient(to right, transparent 0%, black 100%),
    linear-gradient(to bottom, transparent 0%, black 100%),
    linear-gradient(to left, transparent 0%, black 100%);
  mask-position: center, top, right, bottom, left;
  mask-size: 100% 100%, 100% 40px, 40px 100%, 100% 40px, 40px 100%;
  mask-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  mask-composite: subtract, add, add, add;
}

.logo IMG {
  /* visibility: hidden; */
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 65%;
  transition-duration: 1s;
}

A:hover .logo IMG {
  opacity: 100%;
}

blockquote {
  text-align: center;
  font-style: italic;
  line-height: 145%;
}

footer {
  text-align: center;
  border-top: 1px solid #ffffff15;
  padding: 18px;
  color: #707070;
}

footer a {
  color: #a0a0a0;
  margin: 0px 2px;
  transition-duration: 0.4s;
}

footer a:hover {
  color: #e0e0e0;
}

.tryby {
  width: 100%;
}

.tryby img {
  width: 100%;
}

img.social {
  width: 1.3em;
  vertical-align: bottom;
  filter: invert();
  opacity: 50%;
  transition-duration: 0.4s;
}

a:hover img.social {
  opacity: 75%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

figure {
  margin: 0px;
  padding: 0px;
}

.nobr {
  white-space: nowrap;
}

