/* index.css */

html {
  scroll-behavior: smooth;
}

/* index.css */

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #FF00FF;
  color: #333;
}

header {
  background-color: #282c34;
  padding: 20px;
  color: black;
  text-align: center;
}

h2 {
  color: #FFFFFF;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
}
  button {
    background-color: #000000;
  }

footer {
  background-color: #ffffff;
  padding: 20px;
  color: white;
  text-align: center;
}

p {
  line-height: 1.6;
  color: black;
}