@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
/** Media Queries */
/* RESETCSS */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* RESETCSS */
body {
  background: #f6de00;
  background-image: url(./img/na-kaszubach-bg.jpg);
  background-size: cover;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 479px) {
  p {
    font-size: 14px;
  }
}

h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 30px;
}

.card {
  background: #ffffff;
  min-width: 300px;
  max-width: 780px;
  border-radius: 8px;
  padding: 90px;
  border: 1px solid rgb(228, 228, 231);
  margin: 40px;
}
@media (max-width: 992px) {
  .card {
    padding: 60px;
  }
}
@media (max-width: 768px) {
  .card {
    padding: 40px;
  }
}
@media (max-width: 479px) {
  .card {
    padding: 20px;
    margin: 0;
    border: 0;
    border-radius: 0;
  }
}

header {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  header {
    margin-bottom: 40px;
  }
}
header .top {
  display: flex;
  position: relative;
}
header .top h1 {
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  header .top h1 {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  header .top h1 {
    font-size: 20px;
    margin-bottom: 20px;
    background: #f6de00;
    padding: 10px 20px;
    border-radius: 8px;
  }
}
header .intro {
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 479px) {
  header .intro {
    font-size: 16px;
  }
}
header .img-wrapper {
  max-width: 100px;
  position: absolute;
  top: 0;
  left: -140px;
}
@media (max-width: 992px) {
  header .img-wrapper {
    display: none;
  }
}

main {
  margin-top: 20px;
}

footer {
  padding-top: 10px;
  margin-top: 50px;
  border-top: 1px solid #ccc;
}
@media (max-width: 479px) {
  footer {
    padding-top: 0px;
    margin-top: 35px;
  }
}
footer span {
  font-style: italic;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  height: 36px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-top: 40px;
  transition: all 0.2s;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 4rem;
}
.btn:hover {
  background: #222;
}
@media (max-width: 479px) {
  .btn {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */