/* style.css */

body {
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  background-color: #f9f9f9;
}

/* Container styling for centered content */
.container {
  text-align: center;
/*  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

/* Heading style */
h1 {
  font-size: 28px;
}

/* Paragraph style */
p {
  color: #333;
  font-size: 18px;
}

/* Link style */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
