* {
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&family=DM+Sans:opsz@9..40&display=swap');

body {
  font-family: 'Cutive Mono', monospace;
  font-size: 22px;
}

a {
  color:salmon;
}

html {
  height: 100%;
  width: 100%;
}

body {
  background-color:#E9FAFF
}

.play {
  transition: all .3s ease-in-out;
}

#inner:hover {
  fill: salmon;
}

.outermost-cont {
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
  align-items: center;
}

.outer-cont {
  padding: 10px;
  width: 800px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  max-width: 40%;
}

.inner-cont {
  padding: 10px;
  margin: 10px;
  background-color: white;
}

.upper-right {
  padding: 10px;
  width: 400px;
  height: 20%;
  max-width: 30%;
  background-color: white;
  color: black;
  display:flex;
  flex-direction: column;
  align-items: center;
}

.title {
  position: relative;
  background-color: white;
  color: black;
  font-weight: bolder;
  font-size: 36px;
}

.hidden {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.visible {
  opacity: 1;
}