body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: auto;
  padding: 1rem;
}

header {
  background-color: #222;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

nav {
  background-color: #444;
  padding: 0.5rem 0;
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

section {
  margin: 2rem 0;
}

.post {
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
#welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 1s ease;
}

.welcome-message {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

#welcome-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-content img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
