@font-face {
  font-family: 'Baskervville';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/baskervville/v16/YA9Ur0yU4l_XOrogbkun3kQgtw.ttf) format('truetype');
}
@font-face {
  font-family: 'Exo 2';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/exo2/v21/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPg.ttf) format('truetype');
}
::selection {
  color: #000;
  background: #f4efe4;
}
::-moz-selection {
  color: #000;
  background: #f4efe4;
}
a:visited {
  color: #d0c778;
}
a:active {
  color: #d0c778;
}
body {
  margin: 0;
  padding: 0;
  display: grid;
  color: #f4efe4;
  min-height: 100vh;
  font-family: 'Exo 2', sans-serif;
  grid-template-columns: 1fr;
  background-color: white;
}
body h1,
body h2,
body h3,
body h4,
body h5 {
  font-family: 'Baskervville', serif;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.2);
  background: linear-gradient(55deg, #e8bf0a, #dfbf66);
  background-clip: border-box;
  -webkit-background-clip: text;
  color: transparent;
}
body main {
  min-height: 95vh;
  display: grid;
  grid-template-columns: 30% 70%;
  grid-gap: 0;
}
@media screen and (max-width: 1600px) {
  body main {
    grid-template-columns: 50% 50%;
  }
}
@media screen and (max-width: 1200px) {
  body main {
    grid-template-columns: 70% 30%;
  }
}
@media screen and (max-width: 800px) {
  body main {
    grid-template-columns: 1fr;
  }
}
body main .column1 {
  background-color: #e0e0e0;
  padding: 10px;
  background-color: #090a0b;
}
body main .column1 img {
  width: 100%;
  margin: 30px 0;
}
body main .column1 #logo {
  background-image: url('../images/logo.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 200px;
  height: 200px;
  margin: auto;
}
body main .column1 #info {
  text-align: center;
  margin-top: 50px;
}
body main .column1 #info .address-details {
  display: grid;
  grid-template-columns: 1fr;
  /* Jedna kolumna */
  text-align: center;
}
body main .column1 #info .address-details p {
  margin: 0;
}
body main .column1 #info .address-details .info {
  margin-top: 30px;
  font-weight: 600;
}
body main .column2 {
  background-color: #f0f0f0;
  padding: 10px;
  background-image: url('../images/background.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -150px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  body main .column2 {
    background-position: center;
  }
}
@media screen and (max-width: 800px) {
  body main .column2 {
    min-height: 500px;
  }
}
body main .column2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  min-height: 100%;
  background: linear-gradient(to right, #090a0b, transparent);
  z-index: 1;
  /* Umieść gradient pod elementem block1 */
}
@media screen and (max-width: 800px) {
  body main .column2::before {
    display: none;
  }
}
body footer {
  width: 100%;
  height: 5vh;
  background-color: #000;
  color: white;
  font-size: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 600px) {
  body footer {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}
@media screen and (max-width: 600px) {
  body footer p {
    margin: 0;
  }
}
body footer div {
  display: grid;
  place-items: center;
}
body footer div .company {
  font-weight: bold;
}
body footer #support {
  color: white;
}
body footer #support a {
  color: white;
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */