* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'DotGothic16', sans-serif;
  background-image: url('https://i.postimg.cc/SxK5Bpy6/greengrid.jpg');
  animation: moveBackground 15s linear infinite;
  color: white;
  image-rendering: pixelated;
  cursor: url(''), auto;
}
.header{
  text-align: center;
  margin: 0 auto;
}
.container{
    max-width: 800px;
    margin: 0 auto;
    background-color: black;
    padding: 20px;
  border: white ridge 5px;
  align-items: center; 
  justify-content: center;
}
a{
  text-decoration: none;
  color: gray;
}
a:hover{
  color: white;
  cursor: url('https://i.postimg.cc/Jn5nHNm2/cursor-click.png'), auto;
}
::selection{
  color: white;
  background-color: #00C853; 
}
.info1{
  flex: 1;
  display: block;
  justify-content: center;
  align-items: center;
   padding: 20px;
        }
.info1 img {
    max-width: 100%;
    max-height: 100%;
    
        }
.info2 {
    flex: 2;
    padding: 20px;
  padding-bottom: 20px;
        }
.accordion-button {
  width: 100%;
  background: transparent;
  border: none;
  color: #00C853;
  font-size: 25px;
  font-family: 'DotGothic16', sans-serif;
  text-align: left;
  padding: 10px;
  cursor: pointer;
  outline: none;
  transition: 0.3s ease;
}

.accordion-button:hover {
  color: #00E676;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background-color: black;
  transition: max-height 0.3s ease-out;
  padding-left: 10px;
  align-items: center; 
  justify-content: center;
}
p span{
  color: #00C853;
}
audio {
    width: 300px;
    height: 30px;
    border: 4px solid #00C853;
  border-radius: 15px;
}
.content{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  width: 90%;
  margin: 0 auto 50px auto;
  margin-bottom: 50px;
  position: relative;
}
.footer{
  text-align: center;
}
hr {
  display: block;
  margin: 50px 0 -15px;
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #00C853;
  
  + h2 {
    display: inline-block;
    position: relative;
    left: 50%;
    margin: 0;
    padding: 5px 10px;
    border: 1px solid #00C853;
    //box-shadow: inset 0 0 0 1px #00C853;
    transform: translateX(-50%);
    color: #00C853;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .32em;
    text-align: center;
    text-transform: uppercase;
    background-color: black;
    
    // Cancel out offset created by letterspacing
    &::first-letter {
      margin-left: .32em;
    }
  }
}
@keyframes moveBackground {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}
body::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: repeating-linear-gradient(rgba(18, 16, 16, 0) 0, rgba(18, 16, 16, 0) 1px, rgba(0, 0, 0, 0.25) 1px, rgba(0, 0, 0, 0.25) 2px); 
  background-size: 100% 3px;
  z-index: 2;
  pointer-events: none;
  animation: scanlines 0.7s linear infinite;
}

@keyframes scanlines {
    0% {
        background-position: 0 -100%;
    }
    100% {
        background-position: 0 100%;
    }
}
@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 15px;
    border-width: 3px;
  }

  .content {
    flex-direction: column;
    height: auto;
    margin-bottom: 30px;
  }

  .info1, .info2 {
    padding: 10px;
  }

  .info2 {
    padding-bottom: 10px;
  }

  .accordion-button {
    font-size: 18px;
    padding: 8px;
  }

  audio {
    width: 100%;
    height: 35px;
  }

  hr + h2 {
    font-size: 10px;
    padding: 4px 8px;
  }
}
