  body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: #FFFFFF;
    color: #111111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    gap: 30px;
  }
  .button-background {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
    .image img {
    border-radius: 8px;
  }
  .user-background {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: #333333;
    border-radius: 8px;
    padding-bottom: 30px;
  }
  a.button {
    display: block;
    width: 220px;
    text-align: center;
    padding: 14px 20px;
    background: #E95420;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.15s ease, transform 0.1s ease;
  }
  a.button:hover {
    background: #e95620a1;
    transform: translateY(-1px);
  }
  a.button:active {
    transform: translateY(0);
  }
