body {
  background-image: url("ian-valerio-CAFq0pv9HjY-unsplash.jpg"); /* The image used for background*/
  background-repeat: no-repeat; /* Do not repeat the image */
  background-position: center; /* Center the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  background-attachment: fixed;

}

.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}

.image-container {
text-align: center;
width: 100%;
}

.links-container {
display: flex;
flex-direction: column;
jusify-content: center;
align-items: center;
}

.link {
min-width: 50% !important;
}

@media (min-width: 1200px) .container {
max-width: 1140px;
}
@media (min-width: 992px) .container {
max-width: 960px;
}
@media (min-width: 768px) {
.container {
  max-width: 720px;
}

.link {
  width: 100%;
}
}
@media (min-width: 576px) {
.container {
  max-width: 540px;
}
}

.link:hover {
background-color: rgba(0, 0, 0, 0.8); /* tmavší průhledná barva pozadí po najetí myší */
border-color: rgba(255, 255, 255, 1); /* bílá barva rámečku po najetí myší */
color: white;
}

.link {
background-color: rgba(0, 0, 0, 0.6); /* průhledná barva pozadí*/
border-color: rgba(255, 255, 255, 0.5); /* průhledná barva rámečku */
color: white;
padding: 10px 16px;
font-size: 18px;
border-radius: 4px;
border-style: solid;
margin-bottom: 10px; /* poloviční mezera mezi odkazy */
display: flex;
align-items: center; /* Vertikální centrování */
justify-content: center; /* Horizontální centrování */
}

/* Klíčové snímky pro animaci skrytí */
@keyframes hide {
0%  { opacity: 1; }
5%  { opacity: 0; }
55% { opacity: 0; }
60% { opacity: 1; }
}

/* Klíčové snímky pro animaci pohybu */
@keyframes move1 {
5%  { transform: translateX(0px);   }
10% { transform: translateX(32px);  }
50% { transform: translateX(32px);  }
55% { transform: translateX(0px);   }
}


/* Použití animace skrytí na první dva span elementy */
.hidden {
opacity: 1;
animation-name: hide;
animation-duration: 10s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
animation-fill-mode: forwards; /* zajistí zachování posledního snímku animace */
}

/* Použití animace pohybu na poslední dva span elementy */
.move1 {
display: inline-block;
animation-name: move1;
animation-duration: 10s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}

.icon {
fill: #333;
width: 24px;
height: 24px;
margin-right: 5px;
}

.comment {
font-size: 12px;
background-color: rgba(0, 0, 0, 0.6); /* průhledná barva pozadí*/
border-color: rgba(255, 255, 255, 0.5); /* průhledná barva rámečku */
color: darkgoldenrod;
padding: 10px;
border-radius: 5px;
text-align: center;
border-radius: 4px;
border-style: solid;
font-weight: bolder;
margin-top: 5px; /* poloviční mezera mezi odkazy */
}

.success-msg {
  background-color: rgba(2, 134, 75, 0.8);
  border-radius: 4px;
  border-style: solid;  
  border-color: rgba(127, 255, 167, 0.6);
  color: #000000; /* Tmavě zelená */
  font-weight: bolder;
  padding: 1rem;
  margin-bottom: 1rem;
}
 
.error-msg {
  background-color: rgba(134, 2, 2, 0.8);
  border-radius: 4px;
  border-style: solid;  
  border-color: rgba(255, 127, 127, 0.6);
  color: #000000; /* Tmavě zelená */
  font-weight: bolder;
  padding: 1rem;
  margin-bottom: 1rem;
}

/* Skrytí honeypot inputu a jeho rodiče */
#website, #website:parent, #website-parent, .honeypot, [data-honeypot] {
  display: none !important;
}

/* Skryj rodičovský element inputu s id website */
#website {
  display: none !important;
}
#website-label, #website-wrapper, label[for="website"] {
  display: none !important;
}
/* Pokud je input v nějakém wrapperu, použij např. třídu .honeypot nebo data-honeypot atribut */
