* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body {
  font-family: Arial, sans-serif;
  background-image: url('background.jpg'); 
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  color: #0F3549;
}

header {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

header img {
  height: 40px;
  margin-bottom: 10px;
}

header h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

header select {
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
}

.menu-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.menu-item p {
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .menu-item { 
    width: 45%; 
  }
}

@media (max-width: 480px) {
  .menu-item { 
    width: 100%; 
  }
}
