/* Importing fonts */
@font-face {
    font-family: 'SF Pro';
    src: url('sfpro.ttf');
  }
  
  @font-face {
    font-family: 'SF Pro Italic';
    src: url('sfproitalic.ttf');
  }
  
  @font-face {
    font-family: 'SF Pro 1';
    src: url('sfpro1.ttf');
  }
  
  @font-face {
    font-family: 'SF Pro Bottom';
    src: url('sfprobottom.ttf');
  }
  
  body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: 'SF Pro', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Darker background */
    z-index: -1;
  }
  
  .content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
    padding: 1rem;
  }
  
  .intro-card {
    background: rgba(10, 10, 40, 0.8); /* Translucent dark background */
    backdrop-filter: blur(8px); /* Adds a blurred glass effect */
    padding: 3rem; /* Increased padding */
    border-radius: 1.5rem; /* Softer corners */
    max-width: 700px; /* Wider box */
    text-align: left;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.9); /* Softer shadow */
  }
  
  .header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem; /* More spacing */
  }
  
  .flag {
    width: 50px; /* Larger flag */
    height: auto;
    border-radius: 2px; /* Rounded edges */
  }
  
  .name {
    font-size: 3rem; /* Larger name */
    font-weight: bold;
    margin: 0;
    letter-spacing: 0.5px; /* Slight softening */
  }
  
  .intro {
    font-family: 'SF Pro Italic', sans-serif;
    font-size: 1.5rem; /* Increased size */
    margin: 1rem 0;
    letter-spacing: 0.3px; /* Softer appearance */
  }
  
  .details {
    list-style-type: none;
    padding: 0;
  }
  
  .details li {
    font-family: 'SF Pro', sans-serif; /* Text after colon uses sfpro.ttf */
    font-size: 1.2rem; /* Larger font size */
    margin: 1rem 0;
    display: flex;
    letter-spacing: 0.3px; /* Slightly softened text */
  }
  
  .label {
    color: #a785ff; /* Light purple for labels */
    font-weight: bold;
    margin-right: 0.5rem;
  }
  
  .value {
    font-weight: normal;
  }
  
  footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
  }
  
  .footer-text {
    font-family: 'SF Pro Bottom', sans-serif;
    font-size: 1.2rem; /* Larger footer text */
    color: white;
    opacity: 0.8;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .intro-card {
      max-width: 90%; /* Make the box fit better on smaller screens */
      padding: 2rem; /* Adjust padding for mobile */
    }
  
    .name {
      font-size: 2.5rem; /* Slightly smaller for mobile */
    }
  
    .intro {
      font-size: 1.3rem;
    }
  
    .details li {
      font-size: 1rem; /* Slightly smaller details text */
    }
  
    .footer-text {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .intro-card {
      padding: 1.5rem; /* Further adjust padding for very small screens */
    }
  
    .name {
      font-size: 2rem; /* Adjust name size */
    }
  
    .intro {
      font-size: 1.1rem;
    }
  
    .details li {
      font-size: 0.9rem;
    }
  
    .footer-text {
      font-size: 0.9rem;
    }
  }
  