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

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 800px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.logo {
  margin-bottom: 30px;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1;
}

.italic {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}

/* Kontakt */
.contact {
  margin-top: 20px;
}

.contact p {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.contact__info {
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.contact__info a {
  color: #000000;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 400;
  white-space: nowrap;
}

.contact__info span {
  font-size: 1.5rem;
  color: #ff0000;
}

.icon {
  width: 36px;
  height: 36px;
  margin-right: 8px;
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #575757;
  z-index: 2;
}

.background-balls {
  position: absolute;
  display: flex;
  align-items: end;
  width: 100%;
  height: 100dvh;
  z-index: 1;
}

.ball {
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}

.ball1 {
  width: 55%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(251, 252, 5, 1) 25%,
    rgba(254, 87, 135, 1) 100%
  );
}

.ball2 {
  width: 45%;
  height: 75%;
  background: linear-gradient(
    180deg,
    rgba(253, 254, 8, 1) 0%,
    rgba(204, 205, 17, 1) 100%
  );
}

@media only screen and (max-width: 1024px) {
  .ball1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(251, 252, 5, 1) 35%,
      rgba(254, 87, 135, 1) 100%
    );
  }

  .ball2 {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }

  .contact p {
    font-size: 1.5rem;
  }

  .contact__info {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .contact__info span {
    display: none;
  }

  .contact__info a {
    font-size: 1.2rem;
  }

  .icon {
    margin-right: 0;
    margin-bottom: 4px;
  }
}
