
.monochrome-invert {
  filter: grayscale(100%) contrast(3);
  mix-blend-mode: difference; /* makes light text dark, dark background light */
}

iframe {
  clip-path: polygon(0% 37%, 0% 58%, 0% 52%, 100% 52%, 100% 58%, 7% 58%, 7% 100%, 92.25% 100%, 92.25% 58%, 100% 58%, 100% 37%);

  /*
clip-path: polygon(0% 43%, 0% 58%, 0% 52%, 100% 52%, 100% 58%, 7% 58%, 7% 100%, 92.25% 100%, 92.25% 58%, 100% 58%, 100% 43%);
*/
}

.button {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #cfcfcf;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.1s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px; /* if you put text/icon inside */
  user-select: none;
}

.button:active {
  background: #ccc;
}


.ipod {
  z-index: 0;
  width: calc(150px * 6/5);
  height: calc(230px * 6/5);

  background-color: rgb(245, 245, 245);
  border-radius: 14px;

  position: relative;
  top: 50px;
  transition: all 0.3s ease;
  transform: rotate(0deg) translateY(-15px);

  border-radius: 20px;
}


.ipod::before {
  pointer-events: none;

  box-shadow:
    inset 5px 0 6px -2px rgb(184, 184, 184),
    inset 0 -5px 6px -2px rgb(184, 184, 184),
    inset 0 5px 6px -2px rgb(184, 184, 184),
    inset -5px 0 6px -2px white;


  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;

  filter: blur(0.5px);
}



.ipod .inner {
  margin-top: 4%;
  margin-left: 4%;
  height: 95%;
  width: 92%;
  background: transparent;
  border: none;

  border-radius: 10px;
  filter: blur(1px);

  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.05),
    inset 5px 0 2px -2px rgba(255, 255, 255);
}


.wheel .p {
  cursor: pointer;
}

.wheel {
  font-family: 'Arial';

  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);

  width: 100px;
  height: 100px;
  background: #cfcfcf;
  border-radius: 50%;

  box-shadow:
    inset 0 0 20px (0, 0, 0, 0.4);

}


.wheel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background: rgb(245, 245, 245);
  border-radius: 50%;
  box-shadow:
    inset 0 0 5px rgba(255, 255, 255, 0.6),
    inset 0 0 5px rgba(0, 0, 0, 0.2),
    0 0 20px (0, 0, 0, 0.4);
}

.screen-outer {

  cursor: pointer;

  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);

  border-radius: 3px;
  background: linear-gradient(to right, rgb(179, 195, 221), rgb(206, 223, 244));

  box-shadow: 1px 0 2px 0px rgba(0, 0, 0, 0.4) inset,
    -1px 0 2px 0px rgba(0, 0, 0, 0.4) inset,

    1px 0 1px 0 rgba(0, 0, 0, 0.6),
    -1px 0 1px 0 rgba(0, 0, 0, 0.6);


  height: 120px;
  width: 90%;

  padding: 2px;
}


.screen-content {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
}

