 * {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}

body {
    background-image: url(../media/images/loopsheep.webp) ;
    background-size: cover;

}

.content {
    display: flex;
    flex-flow: wrap;
  width: 1000px;
  gap: 5px;
  margin-left: 500px ;
}

.content div#header {
    display: flex;
    width: 1000px;
    margin: 50px 0 150px 0;
    justify-content: center;
}

.home .images {
    display: flex;
  flex-flow: wrap;
}

.home .images div.imgBox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 195px;
  height: 195px;
  background: white;
}

.home .images div.imgBox.song {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 195px;
  height: 195px;
  border-radius: 100%;
  background: white;
}

.images div.imgBox a {
    
  width: 195px;
  height: 195px;  
  background: orange;
}

.images div.imgBox.song a {
    position: relative;
  width: 195px;
  height: 195px;  
  border-radius: 100%;
  border: 5px solid rgb(215, 215, 215);
  background: orange;
}

div.imgBox.song a::before,
div.imgBox.song a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: inherit;
  box-shadow: 0 0 1px grey;
  box-sizing: border-box;
}

div.imgBox.song a::before {
  width: 30%;
  height: 30%;
  margin: -15% 0 0 -15%;
  background: lightgrey;
  background-clip: padding-box; 
  border: 10px solid rgba(0, 0, 0, 0.2);
}

div.imgBox.song a::after {
  width: 18%;
  height: 18%;
  margin: -9% 0 0 -9%;
  background: white;
  background-clip: padding-box;
  border: 10px solid rgba(0, 0, 0, 0.1);
  filter: drop-shadow(0 0 2px grey);
}

.images div.imgBox a:hover {
  width: 180px;
  height: 180px;
  background: orange;
}
