body {
  font-family: Arial, sans-serif;
  margin: 0; padding: 0;
  background: #f9f9f9;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: center;
  background: #222;
  padding: 15px;
}

.navbar a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  color: #ff6600;
}

.hero {
  text-align: center;
  padding: 50px;
  background: #ff6600;
  color: white;
}

.content {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form {
  display: flex;
  flex-direction: column;
}

input, textarea, button {
  margin: 10px 0;
  padding: 12px;
  font-size: 16px;
}

button {
  background: #ff6600;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #e55b00;
}


/* Container */
.containers {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 80px;
  padding: 20px;
  justify-content: center;
  border: 1rem solid floralwhite;
}

/* Clickable box */
.boxen {
  background: white;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  padding: 20px;
  border: 1px solid black;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;   /* remove underline */
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.boxen:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.boxen h1 {
  font-size: 20px;
  margin: 10px 0;
}

.boxen p {
  font-size: 14px;
  text-align: center;
}

img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}
