/* Desktop version set up */
.open {
  display: none;
}

/* Top media bar set up */
.top {
  display: block;
  position: fixed;
  width: 100%;
}

.media {
  background: #272a31;
  height: 40px;
}

.media,
.mediaList {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}

.mediaList {
  margin-right: 150px;
}

.mediaList li {
  margin-left: 10px;
}

.twit {
  margin-right: 40px;
  margin-left: 10px;
}

.mediaList a {
  text-decoration: none;
  color: #ccc;
}

.mediaList a:hover {
  color: #ec5242;
  font-weight: bolder;
  transition: 500ms;
}

.mediaIcon {
  width: 28px;
}

.mediaIcon:hover {
  transform: scale(1.2);
  transition: 500ms;
}

.mediaIcon img {
  width: 100%;
}

/* Second media bar set up */
.desktopBar {
  background: #fff;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 80px;
  margin-left: 150px;
  margin-right: 50px;
}

.logo img {
  width: 100%;
}

.deskOptions {
  display: flex;
  list-style: none;
}

.deskLi {
  text-decoration: none;
  margin: 15px;
  color: #272a31;
}

.rock {
  text-decoration: none;
  font-family: Cocogoose, sans-serif;
  color: #ec5242;
  margin-right: 150px;
  padding: 8px;
  border: 4px solid #ec5242;
}

/* Front screen section */
.background {
  height: 700px;
}

.frontPage {
  position: static;
  margin-top: 170px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hello {
  font-size: 30px;
  font-weight: 900;
  margin-left: 150px;
}

.title {
  font-size: 45px;
  margin: 22px 0 0 0;
  max-width: 700px;
  margin-left: 150px;
}

.intro {
  margin-left: 150px;
  max-width: 400px;
}

.date {
  margin-left: 150px;
  font-size: 30px;
}

.location {
  font-size: 20px;
  margin: 5px 0 0 150px;
}

/* Main program section set up */

.mainContent {
  flex-direction: row;
  flex-wrap: wrap;
}

.bands {
  flex-direction: column;
  justify-content: flex-start;
  height: 230px;
  width: 190px;
  padding-top: 23px;
  margin: 3px;
}

.icon,
.band,
.bands p {
  margin: 0;
  text-align: center;
}

.mainButton {
  background: none;
  width: fit-content;
  height: 55px;
  border-bottom: 2px solid #ccc;
}

.musicCont {
  display: grid;
  max-width: 1100px;
  min-width: 530px;
  grid-template: repeat(2, 1fr) / repeat(auto-fill, minmax(500px, 1fr));
  margin-left: auto;
  margin-right: auto;
}
