/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  width: 100%;
  height: 100%;
  background-color: black;
  color: white;
  font-family: Verdana;
  margin: 0;
  display: flex;
  flex-direction: column;

}

#menu {
  text-align: center;
}

#header {
  font-size: 1.6rem;
  position: relative;
  text-align: center;
}


#title, #description {
  position: relative;
  width: 100%;
  text-align: center;
  
}
.music {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}


.notice {
  padding: 10px;
  text-align: center;
  background-color: #333;
  margin: 0;
  font-size: 40px;
  font-family: Impact, Tahoma;
}

.container-1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 80%;
  height: 100vh;
  margin: 0 auto;
}

.sidebar {
  width: 35%;
  border: 1px solid #ccc;
  padding: 12px;
  margin-right: 50px;
  
  
}

.sidebar, .label {
  display: inline-block;
  font-weight: bold;
  margin-bottom: 15px;
}

.content.container-2 {
  width: 65%;
  height: auto;
  border: 1px solid #ccc;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

li {
  display: block;
  list-style-type: none;
}

.song {
  text-align: left;
}

.note, .resources {
  display: block;
  text-align: center;
  margin: 10 auto 0;
  padding: 0;
  font-size: .8rem;
}

.inline {
  display: block;
}

.large{
  font-size: 1rem;
}

footer {
  padding-top: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 0;
  width: 100%;
  justify-content: center;
  }

 .two, .one{
  border-color: orange;
  min-width: 300px;
  width: 300px;
  max-width: 300px;
  
 }
 
 
 .one {
   border-style: dashed;
   border-color: none;
 }



footer a img {
display:inline-block;
  max-width: 7em;
}
