/* 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 {
  background-image: url(https://png.pngtree.com/background/20210709/original/pngtree-blue-sky-and-white-clouds-banner-background-picture-image_393997.jpg);
  color: purple;
  font-family: Lucida;
  text-align: center;
}
div {
  position: relative;
}
.container {
  display: grid;
}
.box {
  max-width: 1000px;
  height: auto;
  margin: 50px auto;
  display: grid;
  grid-gap: 10px;
  background-color: #7ABEE4;
}
header, nav, main, footer {
   border: 5px black;
}
header {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
  font-size: 70px;
  border: 5px black;
}
nav {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  font-size: 20px;
  max-width: 250px;
}
main {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
footer {
  grid-row: 3 / 4;
  grid-column: 1 / 3;
}
.div-1 {
  background-color: blue; 
  height: 50px;
  width: 50px;
}
.centerdivmusic {
  margin: auto;
  text-align: left;
  height: auto;
  width: 1045px;
  border: 3px solid #692A79;
  border-radius: 2px;
  padding: 5px;
}
.containerCD {
  position: relative;
  width: 100px;
  display: inline-block;
}
.image {
  display: inline-block;
  height: auto;
  width: 100%;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  width: auto;
  opacity: 0;
  transition: .2s ease;
  background-color: #692A79;
}

.containerCD:hover .overlay {
  opacity: 0.75;
}

.text {
  color: #D6BACD;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.headerfortheone {
  font-size: 10px;
  border: 3px solid black;
  height: 100px;
  width: 100px;
  
}
.topnav {
  background-color: #7ABEE4;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #7ABEE4;
  color: white;
}
.break {
  height: 10px;
  width: 100px;
  display: flex;
  opacity: 0;
  
}

.divspecial {
  position: relative;
  height: auto;
  width: 500px;
  background-color: #C5E8C5;
  margin: auto;
}
.divbuttonbox {
  float: left;
  position: relative;
  left: 0px;
}
.musicbox {
  display: grid;
  max-width: 500px;
  background: black;
  margin: 50px auto;
  border-radius: 10px;
  padding: 5px;
  height: auto;
}
tunepart {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  margin: 10px auto;
}
tunecap {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  color: purple;
  margin: 10px auto;
}
