@font-face
{
  font-family: "Celsius Flower";
  src: url("./assets/fonts/Celsius Flower.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

#container
{
	width: 960px;
	height: 540px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background: rgb(154, 218, 248); /* default to Rainbow Dash Blue */
}

#window 
{
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  z-index: 1;
}

#bg 
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 0;
  pointer-events: none;
}

#ui
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

#ui button
{
	border: none;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	cursor: pointer;
	pointer-events: auto;
}

#specialButton
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -250px);
    font-family: "Celsius Flower", sans-serif;
    font-size: 50px;
    color: white;
    background: transparent;
    border: 2px solid white;
    padding: 10px 20px;
    white-space: nowrap;
}
#specialButton:hover 
{ 
  transform: translate(-50%, -250px) scale(1.1);
  color: yellow;
}

#characterButton
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-470px, 230px);
    font-family: "Celsius Flower", sans-serif;
    font-size: 22px;
    color: white;
    background: transparent;
    border: none;
    white-space: nowrap;
    cursor: pointer;
}
#characterButton:hover
{ 
  transform: translate(-470px, 230px) scale(1.1);
  color: yellow;
}

#musicButton
{
    position: absolute;
    bottom: 15px;
    right: 60px;
    width: 34px; 
    height: 34px;
    background: transparent url("./assets/images/Music_On.png") center/cover no-repeat;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease;
}

#musicButton:hover
{
    transform: scale(1.1);
}

#volumeButton
{
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 34px; 
    height: 34px;
    background: transparent url("./assets/images/Volume_On.png") center/cover no-repeat;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease;
}

#volumeButton:hover
{
    transform: scale(1.1);
}