body {
  max-height: 100vh;
  background-color: #1406b0;
}

#piano {
  margin: auto;
  margin-top: 30vh;
  width: 70%;
  max-width: 800px;
  height: 300px;
  background: rgba(45, 234, 2, 0.986);
  box-shadow: 0 8px 32px 0 rgba(174, 19, 55, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(213, 27, 27, 0.18);
  position: relative;
}

#keys {
  width: 90%;
  position: absolute;
  bottom: 5px;
  height: 60%;
  margin: 5%;
}

.whiteKeys {
  width: 7%;
  height: 100%;
  background-color: white;
  position: absolute;
  border: 2px solid black;
  cursor: pointer;
}

.whiteKeys:active {
  background: linear-gradient(
    to bottom,
    rgb(248, 248, 248),
    rgb(238, 238, 238),
    grey
  );
  box-shadow:
    2px -2px black inset,
    -4px -2px black inset;
}

.whiteKeys:hover {
  background-color: rgb(228, 228, 228);
}

.blackKeys {
  width: 3.5%;
  height: 50%;
  background-color: rgb(71, 71, 71);
  position: absolute;
  cursor: pointer;
}

.blackKeys:hover {
  background-color: rgb(36, 36, 36);
}

.blackKeys:active {
  background-color: black;
}

#volumeBar {
  position: absolute;
  right: 50px;
  top: 200px;
}

.fa-volume-up {
  color: yellow;
  font-size: 36px;
}

.fa-plus {
  color: green;
  cursor: pointer;
}

.fa-minus {
  color: red;
  cursor: pointer;
}

#volume {
  font-weight: 800;
  font-size: 1.5rem;
  user-select: none;
  color: white;
}
/* BELL ICON */
.avatar-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.avatar-wrapper img {
  width: 120px; /* adjust size */
  height: 120px;
  border-radius: 50%; /* makes it a circle */
  object-fit: cover; /* keeps image nicely cropped */
  display: block;
}
/* img */
header {
  width: 100%;
  padding: 20px 30px;
  background: #3b5e80; /* change to your theme colour */
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #4caf50; /* accent colour */
}

header .site-title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 5px;
}

header .tagline {
  font-size: 14px;
  opacity: 0.8;
  padding: 5px;
}

header img {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* keeps image circular */
  object-fit: cover; /* prevents distortion */
  border: 2px solid #fff; /* optional outline */
}
