body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  overflow: hidden;
  background-color: rgb(47, 58, 75);
  font-family: Arial, sans-serif;
}

h1 {
  text-align: center;
  margin: 0;
  margin-top: 15vh;
  font-size: 4rem;
  color: white;
}

.container {
  height: 60%;
  width: 100%;
}

.animation-container {
  height: 100%;
  width: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.animation-container hr {
  width: 100%;
}

.box-group {
  display: flex;
  column-gap: 10px;
}

.box {
  height: 80px;
  width: 160px;
  background-color: white;
  border-radius: 5px;
}

.box-1 {
  background-color: red;
  align-self: flex-start;
}

.box-2 {
  background-color: green;
}

.box-3 {
  background-color: blue;
}

.box-4 {
  background-color: yellow;
}

.box-5 {
  background-color: pink;
}

.box-6 {
  align-self: flex-end;
  background-color: rgb(214, 117, 214);
}
