@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
/* ===== Scrollbar CSS =====
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #2ed3be white;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 10px;
  }

  *::-webkit-scrollbar-track {
    background: white;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #2ed3be;
    border-radius: 10px;
    border: 2px solid white;
  } 

a{
    text-decoration: none;
}

.header{
    position: fixed;
    background-color: #2ED3BE;
    z-index: 99;
}

header img{
    height: 75px ;
    width: auto;
}

.header-background {
    transition: 0.5s;
    background-color:#2ED3BE;
}

header .active{
    opacity: 1;
}

header a{
    color: white;
    font-weight: 800;
    font-size: 14px;
}

.hero{
    background-color: #2ED3BE;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/assets/content/Filharmonie 21.10.2021-2.jpg");
    min-height: 750px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero span{
    font-size: 72px;
    font-weight: 700;
    color: #2ED3BE;
}

.hero h1{
    font-size: 32px;
}

.hero p{
    max-width: 600px;
    font-size: 24px;
    font-weight: 500;
}

.hero img{
    height: 100px;
    width: max-content;
}

.nav-link{
    font-weight: 600;
}

.copyright{
    position: absolute;
    bottom: 8px;
    right: 16px;
    
}

span.copyright{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.30);
    font-weight: 500;
}

main img{
  width: 100%;
  object-fit: cover;
  object-position: center top;
  height: 80vh;
}

.main-title{
    font-size: 40px;
    font-weight: 700;
    color: black;
}

.content1 h1{
  font-size: 64px;
  text-align: center;
}

.content1 p{
  font-size: 18px;
  font-weight: 500;
}


.cards .card{
    min-height: 250px;
    border: none;
    border-radius: 0;
}

.cards .card-block{
    min-height: 250px;
}

.cards .card-block h3{
    font-size: 24px;
    font-weight: 800;
}

footer h4{
    color: #41EAD4;
}

footer p, a{
    color: white;
}


@media screen and (max-width: 450px){

    .hero{
        min-height: 550px;
    }
    

}