

body{
margin:0;
font-family: Georgia, serif;
color:white;
text-align:center;
  background-color: black; 
}

button {
  font-family: Georgia, serif;
  width: 150px;       /* Set fixed width */
  height: 50px;       /* Set fixed height */
  padding: 10px 20px; /* Adjust internal space */
  font-size: 20px;    /* Change text size */
}
button {
  font-family: Georgia, serif;
  width: 50%; /* Button will take up 50% of its container */
  margin-bottom: 20px; /* Adds 20px space below the box */
  margin-left: 20px;  /* Adds 10px space to the left */
}
round-button {
  width: 50px;
  height: 50px;
  border-radius: 20%;
  background-color: #ff69b4; /* Customize color */
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  border: 2px solid white;
}