@font-face {
    font-family: myFont;
    src: url(pusab.otf);
}

body {
  background-image: url("bg.png");
  background-size: cover;
  background-color: black;
  font-family: myFont;
  color: #040b38;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.img {
  height: 183.95px;
  transition: 250ms;
}

.img:hover {
  transform: scale(110%);
}

.social {
  width: 16px;
  transition: 250ms;
}

.social:hover {
  transform: scale(110%);
}
.containerdiv {
  display: flex;
  justify-content: center;
}

.section {
  background-color: rgba(0, 0, 0, 0.25);
  margin: 10px;
  padding: 10px;

  border-radius: 10px;
  border-style:ridge;
  border-width: 5px;
  border-color: white;
}

#raccoon {
  width: 500px;
  height: 200px;
}

#doggieimg {
    width: 142px;
}

.list {
  padding-left: 40px;
}

#door {
  position: fixed;
  bottom: -5px;
  left: 0;
  transform: scaleX(-1);
}

#doorimg {
  width: 124.2px;
  height: auto
}

#cellar {
  margin-top: -25px;
}

#disc {
  width: 200px;
  height: auto;
  animation: discRotate 140s linear infinite;
  transition: 250ms;
}

#disc:hover {
  transform: scale(110%);
}

@keyframes discRotate {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

#artist {
  margin-top: -20px;
}

#playing {
  margin-bottom: -19px;
}

#music {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#musicinfo {
  text-align: right;
  align-self: center;
}

#mute {
  position: fixed;
  top: 5px;
  left: 5px;
  transition: 250ms;
}
