@font-face {
  font-family: "Century Gothic";
  src: url("Century Gothic/centurygothic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Century Gothic";
  src: url("Century Gothic/centurygothic_bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
* {
  font-family: "Century Gothic", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  position: relative;
  overflow-x: hidden;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100vw;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 30%;
  gap: 50px;
}
header .header__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
header a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transform: translateY(-10px);
  font-weight: 600;
}
header a:hover {
  text-decoration: underline;
}
header img {
  height: 100%;
  transform: translateY(-10px);
}

main {
  background: url("BG 2025 cesko1.webp");
  background-size: cover;
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
main .text {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  padding-left: 10%;
  padding-right: 38vw;
}
main .text h1 {
  font-family: "Century Gothic", sans-serif;
  font-size: 90px;
  line-height: 1.25em;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}
main .text a {
  font-size: 40px;
  color: rgb(2, 64, 63);
  background: linear-gradient(0deg, rgb(126, 209, 205) 0%, rgb(198, 230, 231) 100%);
  text-decoration: none;
  padding: 15px 35px 15px;
  border-radius: 100px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
main .text a:hover {
  transform: scale(1.025);
}
main img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 90vh;
  transform: translateX(10%);
}

footer {
  background: #111;
  text-align: center;
  padding: 14px 20px;
}
footer p {
  color: #888;
  font-size: 11px;
  line-height: 1.6;
}
footer a {
  color: #888;
  text-decoration: underline;
}
footer a:hover {
  color: #aaa;
}

@media (max-width: 1600px) {
  main .text h1 {
    font-size: 100px;
  }
  main .text a {
    font-size: 30px;
  }
  main img {
    height: 80vh;
  }
}
@media (max-width: 1300px) {
  header {
    padding: 0 20%;
  }
  main .text {
    padding-left: 7%;
    padding-right: 42vw;
  }
  main .text h1 {
    font-size: 80px;
    margin-bottom: 35px;
  }
  main .text a {
    font-size: 30px;
    padding: 12px 28px 12px;
  }
  main img {
    height: 70vh;
  }
}
@media (max-width: 1024px) {
  main .text {
    padding-left: 6%;
    padding-right: 46vw;
  }
  main .text h1 {
    font-size: 65px;
    margin-bottom: 28px;
  }
  main .text a {
    font-size: 28px;
    padding: 11px 24px 11px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 768px) {
  header {
    height: 70px;
    gap: 25px;
    padding: 0 5%;
  }
  header a {
    font-size: 15px;
  }
  main {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-flow: column;
  }
  main .text {
    position: relative;
    height: auto;
    padding: 60px 6% 20px;
    padding-right: 6%;
    justify-content: flex-start;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  main .text h1 {
    font-size: 50px;
    margin-bottom: 28px;
    text-align: center;
  }
  main .text a {
    font-size: 22px;
    padding: 12px 24px 12px;
    letter-spacing: 1px;
  }
  main img {
    position: relative;
    display: block;
    margin: 0 auto;
    transform: none;
    right: auto;
    bottom: auto;
    height: auto;
    width: 90%;
  }
}
@media (max-width: 480px) {
  main .text {
    padding: 50px 5% 16px;
  }
  main .text h1 {
    font-size: 50px;
    margin-bottom: 22px;
  }
  main .text a {
    font-size: 19px;
    padding: 12px 24px 12px;
    letter-spacing: 1px;
  }
  main img {
    width: 90%;
    max-width: 360px;
  }
}
@media (max-width: 360px) {
  main .text {
    padding: 40px 5% 14px;
  }
  main .text h1 {
    font-size: 46px;
    margin-bottom: 18px;
  }
  main .text a {
    font-size: 17px;
    padding: 12px 24px 12px;
  }
  main img {
    width: 95%;
  }
}/*# sourceMappingURL=style.css.map */