* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-align: center;
  width: 100vw;
}

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

a {
  text-decoration: none;
}

.back-home {
  border: 1px solid black;
  background: rgb(160, 2, 160);
  color: white;
  display: inline-block;
  padding: 10px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
}

.back-home:hover {
  font-size: 18px;
  background-color: rgb(108, 1, 108);
}
