* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nova Round', cursive;
}
body {
  background: url("background.png") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.container {
  width: fit-content;
  height: fit-content;
  position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
h1 {
  font-size: 75px;
  color: #fff;
  text-align: center;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
h2 {
  font-size: 25px;
  color: #fff;
  text-align: center;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.btn-container {
  margin-top: 20px;
  text-align: center;
}
button {
  margin: 5px;
  font-weight: 900;
  background-color: #fff;
  border: none;
  outline: none;
  font-size: 25px;
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  transition: 0.2s all;
}
button:hover {
  transform: scale(1.05);
}