/* Base styling */
body {
    font-family: 'Press Start 2P', cursive; /* Pixelated font */
    background-color: #87CEFA; /* Sky blue */
    color: #000;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
  }
  
  /* Profile container styling */
  .profile-container {
    width: 90%;
    max-width: 600px;
    background-color: #ffffff;
    border: 5px solid #000; /* Black border for pixel art look */
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    padding: 20px;
    text-align: center;
  }
  
  /* Header styling */
  .header {
    background-color: #FF69B4; /* Hot pink */
    padding: 20px;
    border-radius: 15px;
    position: relative;
  }
  
  .header h1 {
    font-size: 30px;
    color: #FFF;
    margin: 10px 0;
    text-shadow: 2px 2px 0 #000; /* Strong pixelated effect */
  }
  
  .header .tagline {
    font-size: 18px;
    color: #FFF;
  }
  
  /* Profile picture styling */
  .profile-pic img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #FFF; /* White border */
  }
  
  /* About section styling */
  .about, .favorites, .contact {
    margin-top: 20px;
    padding: 15px;
    background-color: #ffccff; /* Light pink */
    border: 3px solid #000; /* Black border */
    border-radius: 10px;
    position: relative;
  }
  
  /* Section header styling */
  .about h2, .favorites h2, .contact h2 {
    font-size: 24px;
    color: #d5006d; /* Dark pink */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border: 2px dashed #000; /* Dashed border for pixel effect */
  }
  
  /* Favorites list styling */
  .favorites ul {
    list-style-type: none;
    padding: 0;
  }
  
  .favorites li {
    font-size: 16px;
    margin: 8px 0;
  }
  
  /* Button styling */
  button {
    background-color: #d5006d; /* Pink */
    color: #ffffff;
    border: 2px solid #000; /* Black border for button */
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  button:hover {
    background-color: #ff1a69; /* Lighter pink */
    transform: scale(1.1); /* Slightly enlarge on hover */
  }
  
  /* Pixelated background for profile sections */
  .about, .favorites, .contact {
    background-image: url('pixel-pattern.png'); /* Add a pixelated pattern image */
    background-size: 100%;
    background-repeat: repeat;
  }
  
  
  