@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #8A6D3B;
  color: #8A6D3B;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.center-container {
  background-color: #FFEB99;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 20px;
  line-height: 0.7;
}

.button-container {
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button {
  width: 250px;
  height: 45px;
  padding: 5px 20px;
  margin: 5px;
  background-color: #FFD700;
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-text {
  font-family: 'Russo One', sans-serif;
  color: #800000;
  font-size: 24px
}

h1,h2,h3,h4,h5,h6 {
  margin: 15px;
}

h4 {
  padding-bottom: 20px;
}