﻿body {
	margin: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #7266f0, #cb66f7);
	font-family: "Dancing Script", cursive;
}
canvas {
	width: 100%;
	height: 100%;
}
h2 {
	height: 2.6vw;
	top: 7%;
	right: 7%;
	color: rgba(192, 111, 248, 0.3);
	position: absolute;
	font-size:3.5rem;
}

h1 {
	font-family: "Dancing Script", cursive;
	position: absolute;
	top: 80%;
	right: 3%;
	transform: translateY(-50%);
	color: rgba(192, 111, 248, 0.3);
	text-align: right;
	font-size: 2rem;
	line-height: 3vw;
}

h1:after {
	content: "☞❤☜";
	background: rgba(0, 0, 0, 0.3);
	position: absolute;
	bottom: -16px;
	right: 1%;
	height: 1px;
	width: 90px;
	font-family: "Dancing Script", cursive;
}
.container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	height: 100vh;
	z-index: 2;
}
.audio-icon-button {
  border: 0.0625rem white solid;
  padding: 0.5rem;
  width: 2.265rem;
  height: 2.265rem;
  border-radius: 50%;
  background: transparent;
  position: fixed;
  right: 2rem;
  top: 2rem;
  aspect-ratio: 1;
  display: flex;
  gap: 0.125rem;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
@media (hover) {
  .audio-icon-button {
    cursor: pointer;
  }
  .audio-icon-button:hover {
    opacity: 1;
  }
}
.audio-icon-button .bar {
  background: white;
  height: 1.5rem;
  width: 0.0825rem;
}
.audio-icon-button .bar:nth-of-type(1), .audio-icon-button .bar:nth-of-type(5) {
  height: 0.5rem;
}
.audio-icon-button .bar:nth-of-type(2), .audio-icon-button .bar:nth-of-type(4) {
  height: 1rem;
}