html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "VT323";
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

span {
  color: white;
  font-size: 2.5rem;
  text-shadow: 3px 3px 0 black;
}

.start-click {
  cursor: pointer;
}

.window {
  border: ridge 10px white;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(56, 56, 216) 0%,
    rgba(0, 0, 96) 100%
  );
  box-shadow: inset 4px 4px 4px 0 black;
}

.main-window {
  display: flex;
  justify-content: center;
  transition: opacity 10s ease-in;
}

.main-window.unactive {
  opacity: 0;
}

.ch-container {
  margin: 2rem;
  flex: 2;
  display: flex;
  flex-direction: column;
}

.character {
  display: flex;
  margin: 1rem;
}

.info {
  display: flex;
  margin-left: 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.info > * {
  margin: 0.5rem;
}

.menu-container {
  position: relative;
  right: -10px;
  top: -10px;
  width: 100%;
  height: 100%;
  flex: 1;
}

.menu-contaier .window {
  width: 100%;
  position: relative;
  right: -10px;
  top: -10px;
  width: 100%;
  height: 100%;
}

.menu-container .window {
  padding: 1rem;
}

.button-container {
  display: flex;
  justify-content: stretch;
  align-items: center;
}

.button {
  position: relative;
  height: 3rem;
  width: 3rem;
  background-color: white;
  border-radius: 1rem;
  display: inline-block;
  margin: 1rem;
  box-shadow: 4px 4px 0 0 black;
}

.button.large {
  width: 7rem;
}

.button span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-weight: bold;
  text-shadow: 0 0 2px black;
}

.wrapper {
  margin: 0 auto;
  max-width: 500px;
  font-size: 20px;
  line-height: 2;
  position: relative;
}

a {
  text-decoration: none;
  color: black;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.cursor {
  transition: all 0.1s;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 10;
}

.highlight img {
  position: relative;
}

.menu {
  padding: 0;
  display: flex;
  list-style: none;
  justify-content: center;
  margin: 100px 0;
}

.menu a {
  display: inline-block;
  padding: 5px;
  margin: 0 20px;
  color: black;
}
