html {
  height: 100%;
  background-color: black;
}

body {
  height: 100%;
  margin: 0;
}

#red {
  background-color: red;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text {
  color: white;
  font-size: 10vw;
  text-align: center;
  font-weight: bold;
  font-family: "Secular One", sans-serif;
  white-space: nowrap;
  cursor: pointer;
}

#small {
  font-size: 16px;
}

.text:hover {
  color: black;
  cursor: pointer;
}

#blue {
  background-color: blue;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#starRow {
  display: flex;
  align-items: center;
  justify-content: center;
}

#star {
  height: 10vw;
  fill: white;
}

#star:hover {
  fill: black;
  cursor: pointer;
}