*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

html, body {
  height: 100%;
}

h1 {
  padding: 0.2rem 0rem 0.1rem 0rem;
}

h2 {
  padding: 0.3rem 0rem 0.2rem 0rem;
}

h3 {
  padding: 0.6rem 0rem 0.6rem 0rem;
}

h4 {
  padding: 0.8rem 0rem 0rem 0rem;
}

ul {
  padding: 0.2rem 0rem 0.5rem 0rem;
}

p {
  padding: 0.8rem 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

img {
  display: inline-block;
  max-width: 100%;
}

body {
  background-color: #f3eed9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 2.5rem 2rem;
  max-width: 90rem;
}

footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

header {
  background-color: #781818;
  border-bottom: 3px solid #2a030c;
}

nav {
  padding: 0.7rem;
  width: 100%;
}
@media screen and (min-width: 769px) {
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
nav .logo h1 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #F09060;
  background-color: #2a030c;
  background: -webkit-gradient(linear, left top, right top, from(rgba(42, 3, 12, 0)), to(rgb(42, 3, 12)));
  background: linear-gradient(90deg, rgba(42, 3, 12, 0) 0%, rgb(42, 3, 12) 100%);
  border-radius: 15px;
  padding: 0.2rem 0.4rem;
}
nav .logo h1 a {
  color: inherit;
  text-decoration: none;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35%;
}
nav ul li {
  list-style: none;
}
nav ul a {
  color: #FFA860;
  font-size: 0.95rem;
  font-weight: 700;
}
nav ul a:hover {
  color: aquamarine;
  text-decoration: none;
}

#close, #menu {
  color: #FFA860;
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 1px 3px 4px #2a030c;
}

#close {
  display: none;
}

#menu {
  display: none;
}

@media only screen and (max-width: 768px) {
  nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: ease-in-out 0.7s;
    transition: ease-in-out 0.7s;
  }
  nav ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1rem;
    width: 100%;
  }
  .logo {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #menu {
    display: block;
    cursor: pointer;
  }
  ul.opened {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  ul.opened li {
    padding-top: 1rem;
  }
  ul.opened li:last-child {
    padding-bottom: 2rem;
  }
  .show {
    display: block !important;
    cursor: pointer;
  }
  .hide {
    display: none !important;
  }
}
footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: #2E0000;
  color: #C46060;
  min-height: 10rem;
}
footer p {
  font-size: 0.8rem;
}

main {
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}
main h1 {
  color: #510404;
}
main h2 {
  color: #9E3636;
}
main h3 {
  color: #0E4848;
}
main h4 {
  color: #344C03;
}
main ul {
  padding-left: 2rem;
}
main .releases, main .news {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(min(100%, 330px), 1fr));
  gap: 1rem;
}
main .releases ul, main .news ul {
  display: contents;
}
main .releases li, main .news li {
  list-style: none;
}
main .releases figure, main .news figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -o-object-fit: cover;
     object-fit: cover;
}
main .releases figure figcaption, main .news figure figcaption {
  font-size: 0.8rem;
  font-style: italic;
  color: #397575;
}
@media only screen and (max-width: 1065px) {
  main .releases, main .news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  main .releases, main .news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .releases figure, main .news figure {
    padding: 5px 20px;
  }
}
main .bands {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(min(100%, 270px), 1fr));
  gap: 1rem;
}
main .bands ul {
  display: contents;
}
main .bands li {
  list-style: none;
}
main .bands figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -o-object-fit: cover;
     object-fit: cover;
}
main .bands figure figcaption {
  font-size: 0.8rem;
  font-style: italic;
  color: #397575;
}
@media only screen and (max-width: 1065px) {
  main .bands {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  main .bands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .bands figure {
    padding: 5px 20px;
  }
}
main .releases {
  padding-bottom: 2rem;
}
main .more a {
  color: #397575;
}
main .news {
  padding-bottom: 2rem;
}
main .news-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
main .news-item a {
  color: #510404;
  text-decoration: none;
  font-weight: 700;
}
main .news-item a:hover {
  text-decoration: underline;
}
main .news-item_date {
  font-size: 0.8rem;
  font-style: italic;
}

.band-hero {
  background-color: #397575;
  background-color: #023131;
  width: 100%;
}
.band-hero--inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 4rem 0rem;
  max-width: 86rem;
}
@media screen and (max-width: 1400px) and (min-width: 769px) {
  .band-hero--inner {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .band-hero--inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
  }
}
.band-hero--inner img {
  max-width: 400px;
}
.band-hero_description h1, .band-hero p {
  color: #f3eed9;
  padding-right: 1rem;
}/*# sourceMappingURL=main.css.map */