@font-face {
    font-family: 'CustomFont';
    src: url('./Minecraft.ttf') format('truetype');
  }

  body {
  background-image: url('.https://hdun.org/mc/images/dirt.png');
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
  color: white;
  font-family: 'CustomFont', sans-serif; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
max-width: 800px;
text-align: center;
border: none;
padding: 50px 0;
}

.button {
  display: inline-block;
  padding: 20px 40px;
  margin-bottom: .2em;
  font-size: 24px;
  background-color: #4CAF50;
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align:center;
  font-family: 'CustomFont', sans-serif;
  transition: transform 0.1s ease-in-out;
}
.button:hover {
  transform: scale(1.1);
  background-color: #3e8e41; 
}
.container p {
  font-size: 20px;
}
  
