* {
  --primary: #f2b13b;
  --secondary: #31c3be;
  --text: #e2eef5;
  margin: 0;
  padding: 0;
}
body {
  background-color: #192a32;
}

#heading {
  transition: color 1s ease-in-out;

  font-weight: 900;
  font-family: monospace;
  color: var(--text);
  text-align: center;
  font-size: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
}
p {
  padding: 10px;
  font-weight: 900;
  color: var(--primary);
  font-size: 3em;
  font-family: monospace;
}
#test {
  border-radius: 50px;
  position: absolute;
  background-color: var(--secondary);
  height: 25px;
  width: 25px;
}
.super-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#platform {
  transition: box-shadow 0.5s ease-in-out;
  position: absolute;
  border-radius: 10px;
  width: 100px;
  background-color: var(--primary);
  height: 20px;
}
#top-container {
  display: flex;
  justify-content: space-between;
}
#bottom-container {
  margin-bottom: 30px;
}
#container {
  transition: box-shadow 0.5s ease-in, box-shadow 1.5s ease-out;

  box-shadow: 30px 30px 10px #102129;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: space-between;

  background-color: #1f3540;
  border-radius: 20px;
  width: 50%;
  height: 80vh;
}
