@font-face {
    font-family: Regular;
    src: url(ASTERA.ttf);
}
body {
  background-color: black;
  color: #f4b3a0;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
  
  display: flex;
  justify-content: center;
  align-items: center;
}
h1 {
  font-size: 40px;
}
li {
  font-size: 28px;
}
.container {
  position: relative;
  width: 760px;
  height: 570px;
  overflow: hidden;
  background-color: white;
}
.ui-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  
  clip-path: inset(0 100% 0 0);
  animation: slideIn 1s steps(12) forwards;
  animation-delay: 1s;
}
.menu {
  position: absolute;
  right: 0;
  padding-left: 1.5em;
  animation: slideInText 1s steps(12) forwards;
  animation-delay: 1s;
  opacity: 0;
}
.menu-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
}
.dvd-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dvd-menu li {
  position: relative;
  margin-bottom: 1.5em;
}
.dvd-menu li span {
  display: inline-block;
}
.dvd-menu li:hover span {
  transform: translateX(1em);
}
.dvd-menu li::before {
  background-color: #f4b3a0;
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0.2em;
  width: 0.9em;
  height: 0.9em;
  -webkit-mask: url("arrow.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask: url("arrow.svg") no-repeat center;
  mask-size: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: scaleX(1.2);
  transform-origin: left center;
}
.dvd-menu li:hover::before {
  opacity: 1;
}
@keyframes slideIn {
from {
  clip-path: inset(0 100% 0 0);
  transform: translateX(-100%);
}
to {
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
  }
}
@keyframes slideInText {
from {
  clip-path: inset(0 100% 0 0);
}
to {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  }
}