body, html {
    margin: 0; 
    padding: 0;
    width: 100%;
}

.navbar-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/*homepage banner image*/
#banner-img img{
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
}

/*banner image animation */
@keyframes fade-in {
    from {opacity: 0;}
    to {opacity: 1;}
    
}

#banner-img{
    animation: fade-in 2s linear forwards;
}

/*home page written content*/
#home-content {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto 80px auto;
    color: white;
    font-size: large;
    text-align: center;
}

/*big logo img on homepage*/
#logoimg {
    width: 600px;
    max-width: 35%;
}

/*button links at bottom of homepage*/
#home-links {
    width: 90%;
    margin: 40px auto 80px auto;
    max-width: 800px;
    color: white;
    font-size: large;
    text-align: center;
}

/*contact us, forms, funraising, zine pages written content*/
#contact-content,
#forms-content,
#forms-list,
#fundraising-content,
#zine-content {
    width: 90%;
    max-width: 800px;
    margin: 40px auto 80px auto;
    color: white;
    font-size: large;
}

/*get involved page written content*/
#get-involved {
    color: white;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto 80px auto;
}
#terplink-img {
    width: 600px;
    max-width: 50%;
}
#text-centered {
    max-width: 500px;
    margin-left: auto;
}

/*zines page carousel*/
.carousel-container {
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
}
.carousel-img {
  width: 100%;
  height: calc(100vh - 180px);
  object-fit: contain;
  background-color: black;
}


/*zine page written content*/
#zine-content{
    margin-top: 40px;
    margin-bottom: 80px;
    color: white;
    font-size: large;
    text-align: center;
}

.form-container {
  width: 70%;
  max-width: 600px;
  margin: 40px auto;
  color: white;
}

.responsive-form {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  background-color: white;
}

/*gallery page artist hover overlay*/
.container {
  position: relative;
  display: inline-block;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .5s ease;
  background-color: lightgray;

  /*centers text*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.container:hover .overlay {
  opacity: 0.7;
}

.container:active .overlay {
  opacity: 0.7;
}

.text {
  color: black;
  font-size: 20px;
  text-align: center;
}

/*mobile friendly*/
@media (max-width: 992px) {
    .navbar-title {
        position: static;
        transform: none;
        margin-left: 10px;
        font-size: 0.95rem;
    }

    #home-content,
    #contact-content,
    #forms-content,
    #forms-list,
    #fundraising-content,
    #zine-content {
        width: 95%;
        font-size: medium;
    }

    #get-involved {
        width: 95%;
        margin-top: 30px;
        align-items: center !important;
    }

    #terplink-img {
        width: 100%;
        max-width: 100%;
    }

    #text-centered {
        max-width: 100%;
        margin-left: 0;
    }

    .carousel-container {
        width: 95%;
        margin: 20px auto;
    }

    .carousel-img {
        height: 60vh;
    }

    .form-container {
        width: 95%;
        max-width: 100%;
    }

    .responsive-form {
        height: 500px;
    }
}

