@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap");

body {
  background-color: rgb(145, 122, 73);
  text-align: center;
  padding: 10px;
  margin: 20px;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full height of the viewport */
}

#affirmation-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%; /* Set to 20% of the viewport width */
  height: 80%; /* Set to 50% of the viewport height */
  padding: 20px;
  background-color: #E7E4C3;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* Other styles remain the same */
}

#affirmation-text {
  font-size: 50px;
  font-family: "Roboto", sans-serif;

  color: #333;
}

#new-affirmation-button {
  border: none;
  background: none;
  cursor: pointer;
}
