.hide {
  opacity: 0;
}

#music_showcase {
  margin-left: 20px;
  margin-right: 20px;
}

#logo {
 background-color: transparent;
 padding: 5% 0;
 border-style: none;
 color: red;
 font-size: 40px;
 text-align: center;
}

#kofi_badge {
  height: 35%;
  width: 35%;
}

#neocities_badge {
  width: 40%;
  height: 40%;
}

#gallery_buttons {
  display: flex;
  justify-content: space-between;
  width: 200px;
  border-style: none;
  margin-top: 10px;
}

.nav_bar_link {
  padding-right: 1em;
  padding-left: 1em;
}

.gallery_button.gallery_button_full {
  width: 160px;
  margin-top: 10px;
}

.gallery_button {
  width: 80px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background-color: darkred;
  border: 0px;
  border-radius: 20px;
  transition: 0.2s ease-in-out;
}

.gallery_button:hover {
  cursor: pointer;
  background-color: red;
}

#gallery_view {
  border-style: none;
  display: flex;
  align-items: center;
  flex-direction: column;
}

#gallery_images {
  position: relative;
  height: 300px;
  width: 400px;
}

#gallery_img1 {
  z-index: 3;
}

#gallery_img2 {
  z-index: 2;
}

#gallery_img3 {
  z-index: 1;
}

#large_image_container {
  z-index: 99;
  background-color: grey;
  opacity: 0;
  position: fixed;
}

.gallery_img.active {
  opacity: 1;
}

.gallery_img {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: 0.2s ease-out;
}

footer {
  text-align: center;
}

nav {
  text-align: center;
  background-color: black;
  padding: 1em 0;
  border-style: outset;
  border-color: darkred;
}

a {
  color: pink;
}

main {
  z-index: 1;
  margin: 0 20% 0;
}

div {
  background-color: black;
  border-style: solid;
  border-top: none;
  border-bottom: none;
  border-color: darkred;
}

p {
  margin-left: 2em;
  margin-right: 2em;
}

h2 {
  margin-left: 2em;
  margin-right: 2em;
}

body {
  z-index: 0;
  background-color: gray;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  color: white;
  font-family: Verdana;
  background-image: url("bg.jpg");
}

@media only screen and (min-width: 1200px)
{
 #logo { font-size: 60px; }
 #kofi_badge { height: 20%; width: 20%; }
 #neocities_badge { height: 30%; width: 30% }
 body { font-size: 20px; }
 main { margin: 0 30% 0; }
}

@media only screen and (max-width: 600px)
{
 main { margin: 0 2% 0; }

 .nav_bar_link { 
  font-size: 23px;
}
nav {
  line-height: 1.6;
}
 #gallery_images {
  height: 245px;
  width: 325px;
}
}