body {
  margin: 0;
  padding: 0;
  font-family: 'Zilla Slab', serif;
  background-color: #001f4d; /* dark blue */
  color: orange;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

h1 {
  font-size: 4rem;
  margin-bottom: 50px;
}

.boxes {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.box {
  background: #002a66;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.box:hover {
  transform: translateY(-5px);
}

.box img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.box a {
  color: orange;
  text-decoration: none;
  font-weight: bold;
}

footer {
  margin-top: auto;
  padding: 20px;
  font-size: 0.9rem;
  background-color: #001537;
  width: 100%;
}
