body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #ffffff;
  background-color: #cce7fa;
}

.container {
  width: 780px;
  padding: 35px 40px;
  margin: 0 40px;
  border-radius: 20px;
  background-color: #000000;
}

.container header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px;
  gap: 25px;
  color: #b2b2b2;
}

header h1 {
  font-size: 1.6rem;
}

header .column {
  display: flex;
  align-items: center;
}

header .column span {
  margin-right: 15px;
  font-size: 1.19rem;
  font-weight: 500;
}

.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media a {
  padding: 5px;
  margin: 20px 10px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #ffffff;
}

.social-media a:hover {
  background-color: #eeeeee;
}

.social-media img {
  width: 50px;
  height: 50px;
}

.volume-slider {
  accent-color: #ffffff;
}

.keys-check input {
  position: relative;
  width: 50px;
  height: 25px;
  border-radius: 30px;
  background-color: #4b4b4b;
  cursor: pointer;
  appearance: none;
}

.keys-check input:hover {
  background-color: #565656;
}

.keys-check input::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.3rem;
  width: 18px;
  height: 18px;
  border-radius: inherit;
  background-color: #8c8c8c;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.keys-check input:checked::before {
  left: 1.7rem;
  background-color: #ffffff;
}

.piano-keys {
  display: flex;
  margin-top: 40px;
}

.piano-keys .key {
  position: relative;
  cursor: pointer;
  user-select: none;
  list-style: none;
  text-transform: uppercase;
  color: #a2a2a2;
}

.piano-keys .white {
  width: 50px;
  height: 230px;
  border: 1px solid #8c8c8c;
  border-radius: 8px;
  background: linear-gradient(#ffffff 96%, #eeeeee 4%);
}

.piano-keys .white.active {
  scale: 99%;
  box-shadow: inset -5px 5px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(to bottom #ffffff 0%, #eeeeee 100%);
}

.piano-keys .black {
  width: 30px;
  height: 140px;
  margin: 0 -15px 0 -15px;
  z-index: 2;
  border: 1px solid #000000;
  border-radius: 2px 2px 4px 4px;
  background: linear-gradient(#333333, #000000);
}

.piano-keys .black.active {
  scale: 99%;
  box-shadow: inset -5px 5px 10px rgba(255, 255, 255, 0.1);
  background: linear-gradient(to bottom #000000, #434343);
}

.piano-keys span {
  position: absolute;
  bottom: 10px;
  width: 100%;
  font-size: 1.13rem;
  text-align: center;
}

.piano-keys .black span {
  font-size: 1rem;
}

.piano-keys .key.hide span {
  display: none;
}
