html,
body {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(176deg, rgba(34, 193, 195, 0.25) 0%, rgba(253, 187, 45, 0.2) 100%);
  z-index: -2;
}
.gameboy {
  margin: 20px auto;
  background: #2290a5;
  width: 390px;
  height: 620px;
  border-radius: 10px 10px 30px 30px;
  position: relative;
}
.gameboy::after {
  content: ' ';
  position: absolute;
  bottom: -18px;
  left: 4%;
  width: 92%;
  height: 50px;
  background: #2290a5;
  border-radius: 0% 0% 50% 50%;
  z-index: -1;
}
.light {
  position: absolute;
  left: 0;
  width: 17%;
  height: 89%;
  background: rgba(255, 255, 255, 0.15);
}
.light:after {
  content: ' ';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0 0 100% 0;
}
.outer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 4%;
  top: 20px;
  width: 92%;
  height: 44%;
  background: #1f1f1f;
  border-radius: 8px 8px 30px 30px;
}
.outer-display::after {
  content: ' ';
  position: absolute;
  bottom: -9px;
  left: 4%;
  width: 92%;
  height: 50px;
  background: #1f1f1f;
  border-radius: 0% 0% 30% 30%;
}
.inner-display {
  width: 62%;
  height: 65%;
  margin-top: -7%;
  content: ' ';
  background: #c5d6ab;
}
.control-pad {
  position: absolute;
  left: 8%;
  top: 58%;
  width: 100px;
  height: 100px;
}
.control-pad:before {
  position: absolute;
  left: 0;
  top: 36%;
  content: ' ';
  width: 100%;
  height: 28%;
  border-radius: 4px;
  background: #434343;
}
.control-pad:after {
  position: absolute;
  left: 36%;
  top: 0;
  content: ' ';
  width: 28%;
  height: 100%;
  border-radius: 4px;
  background: #434343;
}
.primary-button {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #434343;
}
.primary-button#A {
  right: 8%;
  top: 60%;
}
.primary-button#B {
  right: 27%;
  top: 63.5%;
}
.secondary-button {
  position: absolute;
  width: 40px;
  height: 10px;
  border-radius: 30px;
  background: #434343;
  bottom: 12%;
}
.secondary-button#select {
  left: 38%;
}
.secondary-button#start {
  right: 38%;
}
.speaker-container {
  position: absolute;
  right: 5%;
  bottom: 10px;
  transform: rotate(-8deg);
}
.speaker-container .speaker-row {
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
}
.speaker-container .speaker-output,
.speaker-container .speaker-dump {
  content: ' ';
  background: black;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 2px;
}
.speaker-container .speaker-dump {
  content: ' ';
  background: rgba(0, 0, 0, 0.2);
}
.twitter {
  position: fixed;
  right: 10px;
  bottom: 10px;
  color: #1a84c4;
  background: white;
  padding: 5px;
  border-radius: 5px;
}