@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700&display=swap");
html, body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
}

body {
  margin: 0 auto;
  max-width: 600px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: white;
  color: black;
}

h1 {
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
}

h3 {
  text-align: center;
  font-size: 1.6rem;
  margin: 0.5rem 0;
}

p {
  text-align: justify;
  font-size: 1.2rem;
  margin: 1rem;
}

button {
  padding: 1rem;
  background: inherit;
  color: inherit;
  border: none;
  font-family: inherit;
  font-size: 2rem;
  font-weight: normal;
}

#lokace, #popisDarku, #helpText, #napoveda {
  display: none;
}

#giftButton {
  animation: pulseSmall 1s linear infinite;
}
#giftButton #giftImg {
  width: 20rem;
  max-width: 90vw;
}

#nImg {
  display: flex;
  justify-content: space-evenly;
}
#nImg img {
  margin: 0 0 1rem 0;
  width: 100%;
}

@media screen and (max-width: 500px) {
  #nImg {
    flex-direction: column;
    align-items: center;
  }
  #nImg img {
    width: 90%;
  }
}
@keyframes pulseSmall {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/*# sourceMappingURL=style2.css.map */
