:root {
  --sans-serif: "League Spartan", sans-serif;
}
.side-nav {
  color: #2c363f;
  background-color: #d6dbd2;
  width: 15%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 2% 3% 2% 0;
  z-index: 1;
}
#home-btn {
  font-size: 3em;
  list-style: none;
  font-weight: 500;
  font-family: var(--sans-serif);
  margin: 10px 0;
}
#about {
  list-style: none;
  font-family: var(--sans-serif);
  font-weight: 400;
  margin: 10px 0;
}
#work {
  list-style: none;
  font-family: var(--sans-serif);
  font-weight: 400;
  margin: 10px 0;
}
#resume {
  list-style: none;
  font-family: var(--sans-serif);
  font-weight: 400;
  margin: 10px 0;
}
#contact {
  list-style: none;
  font-family: var(--sans-serif);
  font-weight: 400;
  margin: 10px 0;
}
#music{
  list-style: none;
  font-family: var(--sans-serif);
  font-weight: 400;
  margin: 10px 0;
}
#play {
  list-style: none;
  font-family: sans-serif;
  font-weight: 600;
  margin: 10px 0;
  align-items: center;
  justify-content: center;
  font-size: 2em;
}
#play:hover {
  color: #9e7682;
}
ul {
  margin-right: 10%;
}
hr.solid {
  border-top: 2px solid #2c363f;
}
#title {
  text-align: center;
  justify-content: center;
  color: #c9d7af;
  font-size: 5em;
  font-weight: 500;
  font-family: var(--sans-serif);
  margin: 4% 5% 4% 25%;
}
#text-area {
  display: flex;
  justify-content: center;
  font-family: var(--sans-serif);
  font-size: 2em;
  font-weight: 400;
  margin: 0 5% 5% 25%;
  left: 250px;
  max-width: 65ch;
  color: #bbc7a4;
  line-height: 2ch;
}
#image-area {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  margin-bottom: 45%;
  margin-left: 25%;
  color: #bbc7a4;
  background-size: contain;
  line-height: 2ch;
}
#music-text {
  font-family: var(--sans-serif);
}

html {
  background-color: #2c363f;
}
.nav-div {
  font-size: 2em;
}
a:visited {
  color: #964756;
}
a:hover {
  color: #7494ea;
}
a:link {
  color: #964756;
}
.nav-div:hover {
  animation-name: scale;
  animation-duration: 1s;
  color: #9e7682;
}
#home-btn:hover {
  animation-name: scale;
  animation-duration: 1s;
  color: #9e7682;
}
@keyframes scale {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@media only screen and (max-width: 768px) {
  * {
    font-size: 90%;
    padding-left: 1%;
  }
  #title {
    margin: 0;
    padding-left: 20%;
  }
  #text-area {
    padding: 10% 0;
    left: 10%;
    justify-content: center;
    text-align: center;
  }
  #image-area {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1px 0;
    padding-right: 1;
    left: 10%;
  }
  .side-nav,
  .nav-div {
    max-width: 10%;
    font-size: 2ch;
    padding-left: 5%;
  }
  #contact{
    font-size: 10px;
  }
  #play {
    padding-left: 1px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .side-nav,
  nav-div {
    max-width: 13%;
    font-size: 1ch;
  }
  hr.solid {
    max-width: 80%;
  }
}