* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: black;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  background-image: linear-gradient(120deg, aqua, magenta);
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: black;
  text-align: right;
  margin-top: 200px;
  margin-bottom: 25px;
}

.main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: 100%;
  flex: 1 0 auto;
}

.main .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.main button {
  margin-top: 300px;
  margin-bottom: -200px;
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: black;
  background-color: #e500e5;
  /* background-color: yellow; */
  padding: 20px 40px;
  border: 7px solid black;
  border-radius: 4px;
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.5);
  transition-duration: 300ms;
}
.main button:hover {
  background-color: magenta;
  transform: scale(1.05);
  box-shadow: 0px 8px 8px 4px rgba(0, 0, 0, 0.25);
}
.main button:active {
  transform: translateY(2px) scale(0.99);
  background-color: #ff66ff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
}
.main button:focus {
  outline: 0;
}

.main p {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: black;
  padding: 25px 0px 0px 0px;
  line-height: 1.6;
  text-align: justify;
}

.container {
  width: 1000px;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: white;
  margin-top: auto;
  margin-bottom: 0;
  background-color: black;
  height: 60px;
  width: 100%;
  position: fixed;
  bottom: 0px;
}

.footer .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.footer .social-media {
  height: 20px;
  padding: 0px 10px;
  filter: invert(100%);
}

.footer a {
  border-bottom: 1px solid black;
}
.footer a:hover {
  border-bottom: 1px solid aqua;
}

.header {
  background-color: black;
  color: white;
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: white;
}

.header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.logo {
  filter: invert(100%) brightness(150%);
  height: 80px;
}

.header ul {
  transform: translateY(6px);
}

.header li {
  padding: 0px 15px;
  display: inline;
  line-height: 1.7;
  /* border-bottom: 2px solid magenta; */
}
.header li a {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: white;
  text-decoration: none;
  /* padding: 0.5rem; */
  border-bottom: 5px solid magenta;
}
.header li a:active {
  border-bottom: 5px solid magenta;
}
.header li a:hover {
  background-color: aqua;
  color: black;
}

.header li:last-child {
  padding-right: 0px;
}

.gig {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 100%;
  margin-bottom: 5px;
  border: 1px solid black;
  padding: 0px 15px 0px 0px;
}

.gig-old {
  border: 1px solid #333;
}

.gig:first-of-type {
  margin-top: 50px;
}

.gig-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: black;
  padding: 5px 15px;
  border: 1px solid black;
}

.gig-old .gig-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #333;
  padding: 5px 15px;
  border: 1px solid #333;
}

.gig-icon-month {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: white;
}

.gig-icon-day {
  font-family: 'Open Sans', sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: white;
}

.gig-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: black;
}

.gig-time {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: black;
}

.gig-old .gig-time,
.gig-old .gig-title {
  color: #333;
}

.calendar {
  margin-top: 100px;
  margin-bottom: 100px;
}

.sounds {
  width: 1000px;
}

.clients {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.clients .gallery {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 100px;
  margin-top: 50px;
  width: 1000px;
}

.gallery .logo {
  filter: grayscale(100%) contrast(100%) saturate(100%);
  margin: 10px 10px;
}

.gallery img {
  height: 100%;
}

.gallery .logo-invert {
  filter: invert(100%);
}

.gallery .logo-smaller {
  height: 90%;
}

.gallery .logo-even-smaller {
  height: 80%;
}

.gallery .logo-bigger {
  height: 110%;
}

.gallery .logo-even-bigger {
  height: 120%;
}

.gallery .logo-way-bigger {
  height: 170%;
}

.gallery .logo-even-bigger-again {
  height: 140%;
}

.gallery .trans-up {
  transform: translateY(-10px);
}

.gallery .trans-down {
  transform: translateY(10px);
}

.gallery .trans-down-more {
  transform: translateY(15px);
}

.gallery .logo-darker {
  filter: brightness(20%);
}

.gallery .logo-dark {
  filter: brightness(50%);
}

.contact {
  width: 1000px;
  margin-bottom: 1000px;
}

.contact p {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: black;
  padding-top: 0px;
}

.contact h3 {
  margin-bottom: 50px;
}

.testimonials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 1000px;
  margin-bottom: 0px;
}

.testimonials p {
  border-left: 7px solid magenta;
  padding-left: 20px;
  padding-top: 0px;
  text-align: justify;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 50px;
  font-style: italic;
  width: 70%;
}

.venues {
  width: 1000px;
}

#venues-played {
  margin-top: -100px;
}

@media only screen and (max-width: 1000px) {
  .main {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    flex: 1 0 auto;
  }

  h3 {
    /* margin-right: 25px; */

    display: flex;
    text-align: center;
    font-size: 3rem;
    justify-content: center;
  }

  .header .container {
    margin-right: 15px;
  }

  .header {
    height: 200px;
  }

  .header ul {
    transform: translateY(0px);
  }

  .header .logo {
    /* height: 130px; */
    /* width: 50vw; */
    size: 50vw;
    height: auto;
    max-width: 60vw;
    /* aspect-ratio: 3.6; */
    /* aspect-ratio: 4.5; */
    /* max-height: 50vw; */
    /* max-width:  */
  }

  .header li {
    padding-right: 0px;
    text-align: right;
    display: block;
    line-height: 1.4;
  }
  .header li a {
    padding: 0px 10px 0px 10px;
    border-right: 10px solid magenta;
    border-bottom: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: white;
    text-decoration: none;
    margin-right: 10px;
  }
  .header li a:hover {
    border-right: 10px solid white;
    background-color: aqua;
    color: black;
  }

  .main button {
    margin-top: 320px;
    width: 80vw;
    height: 20vw;
    font-size: 4vw;
  }

  body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-image: linear-gradient(120deg, aqua, magenta);
  }

  .container {
    width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }

  .gig {
    width: calc(100vw - 50px);
    margin-left: 25px;
    margin-right: 25px;
  }

  .sounds,
  .venues,
  .contact {
    width: calc(100vw - 50px);
    margin-left: 25px;
    margin-right: 25px;
  }

  .sounds a {
    margin-left: 25px;
  }

  .clients {
    margin-left: 25px;
    margin-right: 25px;
    max-width: calc(100vw - 50px);
  }

  .clients .gallery {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 100px;
    margin-top: 80px;
    max-width: calc(90% - 50px);
  }

  .contact a,
  .contact p {
    font-size: 2.5rem;
  }

  p {
    margin-left: 25px;
    margin-right: 25px;
  }

  .main p {
    margin-left: 25px;
    margin-right: 25px;
  }

  .footer {
    height: 80px;
  }

  .footer .social-media {
    height: 40px;
  }
}
/* @media only screen and (max-width: 768px) {
  .header {
    height: 200px;
  }

  .header ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .clients {
    margin-left: 25px;
    margin-right: 25px;
    max-width: calc(100vw - 50px);
  }

  .clients .gallery {
    flex-wrap: wrap;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 250px;
    margin-top: 150px;
    max-width: calc(90% - 50px);
  }

  .sounds,
  .venues,
  .contact {
    max-width: calc(100vw - 50px);
    margin-left: 25px;
    margin-right: 25px;
  }

  .main p {
    margin-left: 25px;
    margin-right: 25px;
  }

  .clients {
    margin-left: 25px;
    margin-right: 25px;
    max-width: calc(100vw - 50px);
  }

  .header li {
    display: inline;
    line-height: 1.8;
    border: none;
    padding: 0px;
    margin: 5px 5px;
  }
  .header li a {
    border-right: 0px;
    border-bottom: 10px solid magenta;
    padding: 0px;
  }
  .header li:hover {
    background-color: a;
  }

  .header li a:hover {
    border-right: none;
    background-color: aqua;
  }

  .header .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
  }

  .gig-title {
    margin-left: 20px;
  }

  .header .logo {
    height: 58px;
    margin-bottom: -50px;
  }

  .main button {
    margin-top: 300px;
    margin-left: 25px;
    margin-right: 25px;
    padding: 10px;
  }

  .footer {
    display: none;
  }
} */
.admin {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 1000px;
}

.admin p,
label,
a {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: black;
}

.admin h3 {
  text-align: right;
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: black;
}

input,
select,
textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: black;
  border: 1px solid black;
  padding: 5px;
  width: 100%;
}

label {
  margin-top: 20px;
}

#delete {
  transform: translateY(-357px);
}

button {
  margin-top: 200px;
  margin-bottom: 70px;
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: black;
  background-color: #e500e5;
  padding: 20px 40px;
  border: 7px solid black;
  border-radius: 4px;
  box-shadow: 0px 2px 4px 2px rgba(0, 0, 0, 0.5);
}
button:hover {
  background-color: magenta;
  cursor: pointer;
}
button:active {
  transform: translateY(2px) scale(0.99);
  background-color: #ff66ff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.5);
}
button:focus {
  outline: 0;
}
button:disabled {
  cursor: not-allowed;
  background-color: #ff66ff;
}

.gig-edit {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 100%;
  margin-bottom: 5px;
  border: 1px solid black;
  padding: 10px 15px 10px 10px;
}
.gig-edit:hover {
  cursor: pointer;
}

.hide {
  display: none;
}

/*# sourceMappingURL=styles.css.map */
