dialog {
  color: white;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 200px;
  background: linear-gradient(to left, rgba(160, 0, 255, 0.8), black 50%, rgba(0, 0, 255, 0.8) 100%);
}
dialog button {
  position: relative;
  width: 150px;
}

html {
  display: flex;
  color: white;
}
html audio {
  opacity: 0.01;
  display: block;
}
html main {
  width: 100vw;
  height: 100vh;
  background-color: linear-gradient(to left, rgba(160, 0, 255, 0.8), black 50%, rgba(0, 0, 255, 0.8) 100%);
  position: relative;
  padding: 100px;
}
html main h1 {
  font-weight: bolder;
  position: relative;
  top: -100;
}
html main p {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  padding: 10px;
}
html main .play {
  border: 2px solid white;
  color: white;
  opacity: 0.7;
  width: 200px;
  height: 100px;
  display: flex;
  position: relative;
  font-size: larger;
  font-weight: bold;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  flex-direction: column;
}
html main .play:hover {
  opacity: 1;
  transition: 0.2s ease-in-out;
  border: 2mm ridge rgba(160, 0, 255, 0.8);
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}