
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

header {
  background-color: darkred;
  text-align: center;
  color: wheat;
  font-size: 3em;
}

footer {
  background-color:  black;
  text-align: center;
  color:red;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: black;
  color: wheat;
}

/* .loser {
  height: 150px;
  width: 150px;
} */
