/* Reset default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0a0a2a;
  color: #66ccff;
  text-align: center;
  line-height: 1.6;
}

/* Header styling */
header {
  background-color: #001f3f;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #66ccff;
  font-weight: bold;
}

/* Logo section */
.logo {
  margin: 20px 0;
}

.logo h1 {
  font-size: 4rem; /* Extra-large title */
  color: #66ccff;
  text-shadow: 2px 2px 10px #0099ff;
}

/* Description section */
.description {
  padding: 20px;
}

.description h2 {
  font-size: 2.5rem;
  color: #0099ff;
}

.description p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
}

/* Bottom image section */
.bottom-image {
  margin: 20px 0;
}

.bottom-image img {
  max-width: 100%;
  height: auto;
  border: 3px solid #66ccff;
  box-shadow: 0px 0px 10px #0099ff;
}

/* Footer */
footer {
  background-color: #001f3f;
  padding: 10px 20px;
  font-size: 0.9rem;
}
