body {
  text-align: center;
  margin:0;
  padding:0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f7f1f1;
  font-family: 'Times New Roman', Times, serif;
}

h1{
  font-family: 'Times New Roman', Times, serif;
}

p{
  margin-bottom: 25;
  margin-top: 0;
  padding: 0;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-size: large;
}

button{
  background-color: #f3d3d3;
  color: black;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: 'Times New Roman', Times, serif;
  width: 200px;
  height: 50px;
  border-radius: 20px;
  border: 2px solid #fc9f9f;
  transition: background-color .5s;
  align-self: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

button:hover{
  background-color: #f1b4b4;
}

.home{
  background-color: rgb(204, 235, 187);
  border: none;
  color: black;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: 'Times New Roman', Times, serif;
  width: 100px;
  height: 50px;
  border-radius: 20px;
  border: 2px solid rgb(112, 153, 90);
}

.home:hover{
  background-color: rgb(150, 190, 128);
}