/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body, html {
  font-family: 'Arial', sans-serif;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f8ff;
}

/* Container */
.page-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.content-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 800px;
  margin-top: 60px; /* To provide space for the fixed header */
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #007BFF;
}

p {
  font-size: 1.2em;
  color: #333;
}
