body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fefefe;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background: linear-gradient(to right, #e0f7fa, #fff);
  }
  
  .container {
    max-width: 600px;
    padding: 30px;
    margin-top: 40px;
    background-color: grey#ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .profile {
    text-align: center;
  }
  
  .profile img {
    border-radius: 50%;
    margin-bottom: 15px;
  }
  
  h1 {
    text-align: center;
    color: #00796b;
  }
  
  h3 {
    margin-top: 30px;
    color: #004d40;
  }
  
  ul {
    list-style-type: square;
    padding-left: 20px;
  }
  
  button {
    display: block;
    margin-top: 20px;
    background-color: #00796b;
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #004d40;
  }
  