html, body {
  height: 100vh;
  margin: 0;
  padding: 0;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url("img/DarkWorkshop.webp") no-repeat center center fixed;
    background-size: cover;
    color: #c9d1d9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* padding: 2rem; */
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  
  .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #58a6ff;
    margin-bottom: 1rem;
  }
  
  h1 {
    margin: 0.5rem 0 1rem;
  }
  
  .links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .link {
    text-decoration: none;
    padding: 1rem;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 8px;
    text-align: center;
    color: #c9d1d9;
    transition: all 0.2s ease;
  }
  
  .link:hover {
    background: #21262d;
    border-color: #58a6ff;
    color: #58a6ff;
  }
  
  .footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #8b949e;
  }
  