body {
  background-image: url("/assets/bg.jpg");
  font-family: Courier;
  border-right-style: solid;
  border-left-style: solid;
  border-width: 3px;
}

.container {
  max-width: 1000px;
  margin: 100px auto;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 250px minmax(0, 1fr);
}

header, nav, main, footer {
  border: #3c1b0f solid 3px;
  background-color: #7E2625;
  border-radius: 10px;
  padding: 20px;
}

header {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
}

nav {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  height: max-content
}

main {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  height: max-content;
}

footer {
  grid-row: 3 / 4;
  grid-column: 1 / 3;
}
      
h1 {
  color: #E1C88E;
  font-size: 30px;
  text-align: center;  
}
      
p,ul,li {
  color: #E1C88E;
  font-size: 16px;
}
  
.intro {
 font-size: 18px;
 text-align: center;
}

ul li::marker{
  content: ">";
  color: #E1C88E;
  font-weight: bold;
  padding-right: 10px;
}

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

.me {
  width: 150px;
  height: auto;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
}


.music-wrap {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 9999;
}

.note {
  position: absolute;
  width: 25px;
  height: auto;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

.note1 {
  left: -70px;
  bottom: 210px;
  animation-delay: 0s;
}

.note2 {
  left: -1px;
  bottom: 200px;
  animation-delay: 1s;
}

.note3 {
  left: -100px;
  bottom: 170px;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) scale(1.1) rotate(10deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-20px) scale(1) rotate(-10deg);
    opacity: 0;
  }
}