*{
    margin: 0;
    padding: 0; 
    font-family: "Special Gothic Condensed One", serif;
    letter-spacing: 2px;
    box-sizing: border-box;
}
@keyframes appear{
    from{
        opacity: 0;
        scale: 0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}
.hero h1{
    animation: appear 2s linear;
}
.hero h2{
    animation: appear 2s linear;
}
.hero h3{
    animation: appear 2s linear;
}
.hero h4{
    animation: appear 2s linear;
}
.clan{
    animation: appear 5s linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
.kontakt{
    animation: appear 5s linear;
    animation-timeline: view();
    animation-range: entry 0 cover 40%;
}
body {
    background-color: black;
}
.nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 25px;
    background-color: #000000;
    height: 70px;
}
.nav ul{
    list-style: none;
    display:flex;
    gap: 50px;
}
.nav a{
    color: white;
    text-decoration: none;
    font-size: 25px;
}
.nav a:hover{
    color: rgb(188, 17, 17);
}
.hero {
    background-color: black;
    background-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.6) 60%,
      rgba(0,0,0,1) 100%
    ),
    url("slika14.jpg");
    height: 900px;
    background-size: cover;
    background-position-y: 15%;
    color: rgb(218, 15, 15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    gap: 10px;
}
.hero h1{
    font-family: "Kurale", serif;
    font-size: 96px;
    letter-spacing: 50px;
    line-height: 73px;
    text-shadow: 0 10px 100px rgba(0,0,0,1);
}
.hero h2 {
    font-family: "Kurale", serif;
    letter-spacing: 18px;
    font-size: 30px;
    color: white;
    text-shadow: 
        -1px -1px 0 #323232,  
         1px -1px 0 #323232,
        -1px  1px 0 #323232,
         1px  1px 0 #323232;
}
.hero h3{
    font-family: "Kurale", serif;
    font-size: 100px;
    letter-spacing: 50px;
}
.hero h4{
    font-size: 100px;
    letter-spacing: 50px;
    font-family: "Kurale", serif;
    height: auto;
    background: linear-gradient(
    to bottom,
    white 20%,
    #ff8b8b 70%,
    #ff3b3b 90%,
    #ff2222 100%
  );
    background-clip: text;
   -webkit-background-clip: text;
   color: transparent; 
   -webkit-text-fill-color: transparent;
   position: absolute;
   top: 840px;

}
.gradient-text-h1 {
    height: auto;
    background: linear-gradient(
    to bottom,
    white 30%,
    #ff8b8b 70%,
    #ff3b3b 100%,
    #ff2929 100%
  );
    background-clip: text;
  -webkit-background-clip: text;
  color: transparent; 
  -webkit-text-fill-color: transparent;
}
.gradient-text-h3 {
    height: auto;
    background: linear-gradient(
    to top,
    white 30%,
    #ff8b8b 60%,
    #ff3a3a 80%,
    #ff2222 100%
    
  );
    background-clip: text;
  -webkit-background-clip: text;
  color: transparent; 
  -webkit-text-fill-color: transparent;
}
#clanovi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px;
}
#vokal {
  grid-column: 1 / -1;
}

.clan {
  text-align: center;
}

.clan img {
  width: 100%;
  max-width: 700px;
  border-radius: 10px;
}
.instrument {
  display: block;
  font-size: 25px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}
.kontakt{
    display: flex;
    text-align: center;
    height: 500px;
    font-size: 40px;
    justify-content: center;
}
.kontakt h1{
    color: white;
}
.kontakt strong{
    color: rgb(190, 17, 17);
}
.rights{
    background-color: rgb(110, 0, 0);
    color: white;
    height: 70px;
    font-size: 18px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
@media (max-width: 768px) {
    .kontakt{
    animation: appear 5s linear;
    animation-timeline: view();
    animation-range: entry 0 cover 20%;
    }
    .nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #000000;
    height: auto;
   }
    .nav ul{
    list-style: none;
    display:flex;
    }
    .nav a{
        font-size: 15px;
    }
    .hero {
        background-color: #000000;
        margin-top: -10px;
        height: 300px;
        background-size: 125%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-position-x: -50px;
    }
    .hero h1{
        margin-top: 50px;
        font-size: 30px;
        letter-spacing: 12px;
        line-height: 1;
    }
    .hero h3{
        font-size: 30px;
        letter-spacing: 12px;
        line-height: 1;
    }
    .hero h2{
        font-size: 12px;
        letter-spacing: 5px;
    }
    .hero h4{
        font-size: 30px;
        letter-spacing: 12px;
        line-height: 1;
        position: relative;
        top: 70px;
    }
    #clanovi{
        background-color: #000000;
    }
    #clanovi {
    grid-template-columns: 1fr;
    grid-template-areas:
      "dirigent"
      "clan1"
      "clan2"
      "clan3";
  }
    .gradient-text-h1,
    .gradient-text-h3{
        height:auto;
    }
    .kontakt{
        position: relative;
        bottom: 10px;
        font-size: 15px;
        height: auto;
        padding: 30px 10px;
    }

    .rights{
        font-size: 11px;
        height: auto;
        padding: 10px;
    }
}
@media (min-width: 768px) and (max-width:1024px){
    .nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #000000;
    height: auto;
   }
    .nav ul{
    list-style: none;
    display:flex;
    }
    .nav a{
        font-size: 15px;
    }
    .hero {
        margin-top: -10px;
        height: 600px;
        background-size: 120%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-position-x: center;
    }
    .hero h1{
        margin-top: 50px;
        font-size: 60px;
        letter-spacing: 12px;
        line-height: 1;
    }
    .hero h3{
        font-size: 60px;
        letter-spacing: 12px;
        line-height: 1;
    }
    .hero h2{
        font-size: 20px;
        letter-spacing: 5px;
    }
    .hero h4{
        font-size: 60px;
        letter-spacing: 12px;
        line-height: 1;
        position: relative;
        top: 170px;
    }
    .instrument{
        font-size: 15px;
    }
    .clan img {
    width: 70%;
    max-width: 700px;
    border-radius: 10px;
    }
    .kontakt{
        position: relative;
        bottom: 10px;
        font-size: 25px;
        height: auto;
        padding: 30px 10px;
    }

    .rights{
        font-size: 15px;
        height: auto;
    }
}
@media (min-width: 1024px) and (max-width:1440px){
    .kontakt{
    animation: appear 5s linear;
    animation-timeline: view();
    animation-range: entry 0 cover 10%;
    }
}