body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1a1a1a;
  color: #eee;
  margin: 0;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: linear-gradient(120deg, #2a2a2a, #1a1a1a);
}

@media screen and (max-width: 768px) {
  body {
      align-items: flex-start;
  }
}

.container {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background-color: rgba(40, 40, 40, 0.9);
  max-width: 420px;
  width: 90%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}

.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #444;
}

h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
}

.dates {
  margin: 10px 0;
  font-size: 20px;
  color: #bbb;
  font-weight: 300;
}

.divider {
  width: 80%;
  height: 1px;
  background-color: #555;
  margin: 25px auto;
}

.obituary {
  margin-top: 20px;
  font-size: 16px;
  text-align: justify;
  padding: 0 10px;
  line-height: 1.6;
}
