* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

#navbar {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 1s ease;
  transform: translateY(0); /* Initially visible */
  border-bottom: 1px solid #000;
  padding: 0;
  padding-left: 2vw;
  padding-right: 2vw;
  background-color: white;
}
#navbar .navbar-brand {
  margin-top: 20px;
  margin-bottom: 15px;
  line-height: 62px;
  font-size: 20px;
  font-weight: 400;
  white-space: normal;
}
@media (min-width: 576px) {
  #navbar .navbar-brand {
    font-size: 44px;
    line-height: 62px;
    margin-top: 40px;
  }
}
#navbar .navbar-toggler {
  border: none;
}
#navbar .navbar-toggler img {
  width: 22px;
}
#navbar .navbar-toggler:focus {
  box-shadow: none;
}
#navbar .navbar-nav {
  gap: 30px;
}
#navbar .nav-link {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
#navbar.navbar-hidden {
  transform: translateY(-100%); /* Hidden */
}

@media (min-width: 576px) {
  #focus, #home {
    padding: 0 40px;
  }
}
#focus p, #home p {
  margin-top: 20px;
  margin-bottom: 20px;
  opacity: 0.6;
  line-height: 20px;
}
@media (min-width: 576px) {
  #focus p, #home p {
    font-size: 24px;
    line-height: 38px;
  }
}

#focus {
  padding-top: 10px;
}
@media (min-width: 576px) {
  #focus {
    padding-top: 100px;
  }
}

#history {
  background-color: rgba(0, 0, 0, 0.1019607843);
  margin-top: 40px;
  padding-top: 40px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 576px) {
  #history {
    margin-top: 60px;
    padding-top: 60px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
#history > div {
  margin-bottom: 20px;
  padding: 0 10px;
}
@media (min-width: 576px) {
  #history > div {
    margin-bottom: 50px;
  }
}
#history .gig {
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  #history .gig {
    margin-bottom: 20px;
  }
}
#history h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
#history .title {
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
}
#history p {
  margin: 0;
  font-size: 16px;
}
#history a {
  color: black;
}

#contact {
  margin: 60px 0;
}
#contact > div:first-child {
  margin-bottom: 40px;
}
#contact h4 {
  margin: 0;
  color: black;
  font-size: 16px;
  font-weight: 500;
}
#contact a {
  color: black;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 576px) {
  #contact a {
    font-size: 20px;
  }
}

footer {
  padding: 40px 50px 20px 50px;
}
@media (min-width: 576px) {
  footer {
    padding-bottom: 50px;
  }
}
footer p {
  font-size: 12px;
  line-height: 20px;
  opacity: 0.5;
  text-align: center;
  margin: 0;
  margin-bottom: 2rem;
}
footer p.madeby {
  margin-top: 1.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  footer p.madeby {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 576px) {
  footer p {
    text-align: justify;
    margin-bottom: 0;
  }
}
footer a {
  color: black;
  text-decoration: none;
  opacity: 0.6;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 10px;
}
footer a img {
  width: 20px;
  margin-left: 5px;
}/*# sourceMappingURL=style.css.map */