
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #222;
  color: white;
  position: relative;
}
header a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}
header img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.menu-icon {
  width: 30px;
  cursor: pointer;
  position: absolute;
  left: 20px;
  top: 20px;
}
.menu-content {
  display: none;
  position: absolute;
  top: 60px;
  left: 20px;
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  flex-direction: column;
  align-items: flex-start;
  border-radius: 4px;
  z-index: 1000;
}
.menu-content.visible {
  display: flex;
}
.menu-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  width: 100%;
}
.menu-content a:hover {
  background-color: #f1f1f1;
}
.main-image {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.content {
  padding: 2rem;
}
