* {
  padding: 0px;
  margin: 0px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

body {
  text-align: center;
  margin-bottom: 200px;
  transition: all 0.4s;
}

nav {
  width: 150px;
  height: 100vh;
  padding: 100px 20px;
  background-color: rgb(200, 200, 200);
  position: fixed;
  right: -190px;
  top: 0;
  transition: right 0.3s;
}

nav.show {
  right: 0px;
}

.navItem {
  margin-bottom: 20px;
}

.hamburger {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 10;
}

.bun {
  height: 4px;
  width: 30px;
  border-radius: 2px;
  background-color: black;
  margin-bottom: 3px;
}

/*Scroll Style*/

h1 {
  font-size: 50px;
}

img {
  width: 125px;
  margin: 20px;
}

.song {
  margin: 20px auto;
  width: 50%;
  background-color: rgb(200, 200, 200);
  height: 200px;
  border-radius: 4px;
  color: black;
  display: flex;
  align-items: center;
  position: relative;
  top: 100px;
  transition: top 0.4s, opacity 0.4s, background-color 0.4s, border 0.4s;
  opacity: 0;
}

.songtext {
  text-align: left;
  margin-left: 30px;
  font-size: 20px;
}

.song.slide {
  top: 0;
  opacity: 1;
}

/* Dark Mode */

button {
  background-color: #c2c2c2;

  color: #4d4d4d;

  padding: 8px;

  border-radius: 13px;
}

body.dark {
  background-color: rgb(69, 69, 69);
  color: #e6e6e6;
}

button.dark {
  background-color: #424242;
  color: #e6e6e6;
}

.song.dark {
  transition: all 0.2s;
  border: 2px grey solid;
  background-color: rgb(46, 46, 46);
  color: #e6e6e6;
}

nav.dark {
  background-color: rgb(52, 52, 52);
}

navItem.dark {
  color: #e6e6e6;
}
