.phone-wrapper {
  width: 400px;
  max-width: 100%;
  margin: 2rem auto;
  padding: 12px;
  background: hsl(12, 93%, 61%);
  border-radius: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: visible;
}
.phone-wrapper::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: #000211;
  border-radius: 3px;
  z-index: 2;
}
.phone-wrapper .phone-button {
  position: absolute;
  right: -4px;
  width: 6px;
  height: 30px;
  background: #000211;
  border-radius: 3px;
  z-index: 1;
}
.phone-wrapper .phone-button.volume-up {
  top: 100px;
}
.phone-wrapper .phone-button.volume-down {
  top: 140px;
}
.phone-wrapper .phone-button.power {
  top: 180px;
  height: 40px;
}
.phone-wrapper .phone-screen {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 36px;
  border: none;
  display: block;
  overflow: hidden;
  background: #000211;
}
.phone-wrapper .phone-screen iframe {
  width: 100%;
  height: 100%;
}