@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #100d38;
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  text-align: center;
  font-size: 40px;
  margin: 40px;
}

textarea {
  border-radius: 8px;
  padding: 10px;
  font-size: 18px;
  margin: 40px;
}

p {
  font-size: 20px;
  margin: 5px;
}
