/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #57767d;
    color: white;
    min-height: 100vh;
    padding: 3rem 1rem 2rem;
  }
  
  /* Fix horizontal centering */
  .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto; /* <- centers the container horizontally */
    gap: 2.5rem;
  }
  
  
  .profile-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
  }
  
  .intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
    padding: 0 1rem;
  }
  
  .link-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  
  .social-button {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: background-color 0.3s;
    box-shadow: 5px 5px 5px #0000004b;
  }
  
  .social-button i {
    font-size: 1.2rem;
  }
  
  .social-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .slideshow {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 2rem auto 0; /* Top margin + auto for horizontal centering */
    overflow: hidden;
    border-radius: 10px;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  