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

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #000000;
}

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

a:hover {
  text-decoration: underline;
}

/* Header Styles */
header {
  background-color: #000;
  padding-top: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

nav {
  max-width: 1000px;
  margin: 0 auto;
}

nav ul {
  margin-left: 30px;
  list-style: none;
  display: flex;
}

nav li {
  margin-right: 20px;
}

nav li:last-child {
  margin-right: 0;
}

nav a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 100;
  padding: 20px;
  color: #aaa;
}

nav a:hover {
  color: #fff;
  text-decoration: none;
}

/* Container Styles */
.container {
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 20px;
}

section {
  margin-bottom: 40px;
  padding: 25px;
  border-radius: 20px;
}

section:last-child {
  margin-bottom: 100px;
}

h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 80px;
  font-weight: 100;
  line-height: 10px;
  letter-spacing: -5px;
  color: #fff;
  padding: 0px;
  margin: 0px;
  margin-bottom: 10px;
  padding-top: 100px;
  text-shadow: 3px 3px 5px #000000;
}

h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -3px;
  color: #fff;
  padding: 0px;
  margin: 0px;
  margin-bottom: 10px;
  text-shadow: 3px 3px 5px #000000;
}

h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
  padding: 0px;
  margin: 0px;
  margin-top: 20px;
  text-shadow: 3px 3px 5px #000000;
}

h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 100;
  color: #999;
  padding: 0px;
  margin: 0px;
  margin-bottom: 20px;
}

.quotetext {
  font-family: "Caveat", cursive;
  font-size: 35px;
  line-height: 33px;
  margin-top: 30px;
}

hr {
  width: 360px;
  margin: 0;
  padding: 0;
  border: 1px solid #888;
}

p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
  text-decoration: none;
}

#studio ul,
#about ul {
  list-style: none; /* Remove HTML bullets */
  padding: 0;
  margin: 0;
}

#studio li,
#about li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
  padding-left: 0px;
}

#studio li::before,
#about li::before {
  content: "-"; /* Insert content that looks like bullets */
  padding-right: 15px;
  color: rgb(98, 98, 98); /* Or a color you prefer */
}

audio {
  display: block;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

#home {
  height: 700px;
  background-image: url("images/mic_bg.jpg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#aaron_pic {
  width: 200px;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}

.creditholder {
  color: #fff;
  margin-bottom: 20px;
}

.credittitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 5px;
}

.credittext {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 20px;
}

.creditholder a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed #fff;
}

.demoholder {
  color: #fff;
  margin-bottom: 20px;
}

.demotitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 5px;
}

.demotext {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 20px;
}

p a {
  color: #ccc;
  text-decoration: none;
  border-bottom: 1px dashed #fff;
}

p a:hover {
  text-decoration: none;
}

.shaded {
  background-color: #1f1f1f;
}
audio {
  margin-top: 15px;
}

@media only screen and (max-width: 768px) and (min-width: 700px) {
  .container {
    width: 90%;
  }
  nav {
    max-width: 700px;
    margin: 0 auto;
  }
  #home {
    height: 600px;
    background-image: url("images/mic_bg.jpg");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  .quotetext {
    font-family: "Caveat", cursive;
    font-size: 25px;
    line-height: 28px;
    margin-top: 30px;
  }

  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 50px;
  }
  hr {
    width: 230px;
  }
  p {
    font-size: 18px;
  }
  .demotitle,
  .demotext {
    font-size: 18px;
  }
  .credittitle {
    font-size: 18px;
  }

  .credittext {
    font-size: 18px;
  }
  #studio li,
  #about li {
    font-size: 18px;
  }
}

@media only screen and (max-width: 699px) {
  .container {
    width: 90%;
  }

  nav {
    max-width: 400px;
    margin: 0 auto;
  }

  nav ul {
    margin-left: 10px;
    list-style: none;
    display: flex;
  }

  nav li {
    margin-right: 10px;
  }

  nav li:last-child {
    margin-right: 0;
  }

  nav a {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 100;
    padding: 10px;
    color: #aaa;
  }

  #home {
    height: 700px;
    background-image: url("images/mic_bg_responsive.jpg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  .quotetext {
    font-family: "Caveat", cursive;
    font-size: 25px;
    line-height: 28px;
    margin-top: 30px;
  }

  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 50px;
  }
  hr {
    width: 230px;
  }
  p {
    font-size: 18px;
  }
  .demotitle,
  .demotext {
    font-size: 18px;
  }
  .credittitle {
    font-size: 18px;
  }

  .credittext {
    font-size: 18px;
  }
  #studio li,
  #about li {
    font-size: 18px;
  }
}
