/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: pink;
  color: purple;
  font-family: black;
  .nintendo-ds {
  width: 400px;
  height: 300px;
  position: absolute;
  top: 200px;
  left: 50%;
  margin-left: -200px;
  z-index: 10;
  overflow: hidden;
  background: url('https://i.imgur.com/example-ds.png') no-repeat center;
  background-size: contain;
  border: 8px solid #444;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.ds-screen {
  width: 320px;
  height: 200px;
  position: absolute;
  top: 50px;
  left: 40px;
  background: #000;
  border: 4px inset #333;
  overflow: hidden;
}

.ds-buttons {
  position: absolute;
  bottom: 30px;
  left: 50px;
  width: 300px;
  display: flex;
  justify-content: space-between;
}

.ds-button {
  width: 60px;
  height: 60px;
  background: #666;
  border: 3px outset #999;
  border-radius: 50%;
  cursor: pointer;
}

}