@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
  height:100%;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: black;
  color: white;
  margin: 0;
  padding: 0;
  background: black url('/images/duse/pozadi_web.jpg') bottom no-repeat;
  background-size: contain;
}
.container {
  margin: 0 auto;
  max-width: 900px;
  width:100%;
  /*border:1px solid red;*/
}

.start {
  border-bottom: 1px solid white;
  padding: 24px 0;
  margin-bottom:48px;
  margin-left: 24px;
  margin-right: 24px;
}
.title {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  background: url('/images/duse/koruna_plamen.png') center -100px no-repeat;
  height: 230px;
}
.title p {
  font-size: 19px;
  margin: 0;
}
h1 {
  font-weight: 400;
  margin: 0;
  font-size: 32px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 1);
}
.title-jisrka {
  display: flex;
  flex-direction: column;
  text-align:center;
}
.title-jisrka p {
  font-size: 20px;
  margin: 0px 0;
}
.title-luther {
  font-size:30px;
  text-align:center;
}
.title-luther p {
  margin:0;
}
.title-luther h2 {
  font-size:64px;
  margin:0;
  font-weight:400;
}
.title-luther .btn {
  margin-top:32px;
  justify-content:center;
  display: flex;
}
.flex {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
}

.serie {
  margin-top:64px;
  justify-content: space-evenly;
  text-align:center;
}
.serie p {
  padding:0 12px;
  font-size:25px;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}
.serie img {
  height: 250px;
}
.serie .flex {
  justify-content:center;
  gap:24px;
}
.luther h2 {
  margin-top:0px;
  justify-content: space-around;
}
.luther img {
  width:350px;
  margin:24px;
}
.luther a img {
  width:230px;
} 
footer {
  box-shadow: 0px -6px 12px 3px rgb(0 0 0 / 50%);
  background: #480B18;
}
footer div {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 12px 10px;
  margin-top: 300px;
  flex-direction: column;
}
footer div  p {
  text-align:center;
  margin:10px 0;
}
footer a {
  color:white;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

.image-link {
    display: block;
    width: 230px; /* nastav šířku obrázku */
    height: 58px;
    background-image: url('/images/duse/tlacitko_active.png');
    background-size: cover;
}

.image-link:hover {
    background-image: url('/images/duse/tlacitko_hover.png');
}

@media screen and (max-width: 678px) {
  .flex {
    flex-direction:column;
  }
  .luther h2 {
    margin-top:64px;
  }
  .serie img  {
    max-width:250px;
  }
}
.pulse:hover {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}