/* fontstyle.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #fffaf0, #fdf6e3);
  color: #333;
}

a {
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  color: #5ce1e6;
  transition: 0.3s ease;
}

a:hover {
  color: #2c5364;
  text-decoration: underline;
}

h1, h2, h3 {
  color: #203a43;
  text-align: center;
  margin-top: 2em;
}
