html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f4f4;
  color: #333;
}

.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header {
  background: linear-gradient(to right, #005a87, #0b88b6);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.header-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

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

h1 {
  margin: 0;
  font-size: 2em;
}

h2 {
  color: #005a87;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: white;
  color: #005a87;
  border: 2px solid white;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #ffffff44;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

footer {
  background-color: #005a87;
  color: white;
  text-align: center;
  padding: 20px 10px;
}
