/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: "Courier New", Courier, monospace;
    background-color: #fff7e7; /* Cream */
    color: #ff8db9; /* Salmon Pink */
  }
  
  /* Wrapper */
  .app-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    background: #fff7e7; /* Light Pink */
    border: 3px solid #ff8db9;
    box-shadow: 0 0 15px #ff8db9;
    text-align: center;
  }
  
  /* Header */
  header {
    text-align: center;
    padding: 1rem;
    background: #ff8db9;
    color: #fff7e7; /* Light Pink */
    border-bottom: 3px solid #fff7e7; /* Cream */
  }
  
  header h1 {
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 0px #973246, 4px 4px 0px #973246; /* Retro-style shadow */
  }
  
  /* Navigation */
  nav {
    display: flex;
    justify-content: center;
    background: #fff7e7;
    padding: 0.5rem 0;
    border-top: 3px solid #ff8db9;
    margin-bottom: 1rem;
  }
  
  nav a {
    color: #ff8db9;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s, text-shadow 0.3s;
  }
  
  nav a:hover {
    color: #ff8db9;
    text-shadow: 2px 2px 0px #fff7e7;
  }
  
  /* Main Content */
  main {
    padding: 2rem;
  }
  
  main h2 {
    color: #ff8db9;
    font-size: 2rem;
    text-shadow: 1px 1px 0px #fff7e7;
    margin-bottom: 1rem;
  }
  
  main p {
    font-size: 1rem;
    margin: 1rem 0;
    color: #ff8db9; /* Deeper salmon for content text */
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background: #ff8db9;
    color: #fff7e7;
    margin-top: 2rem;
    border-top: 3px solid #fff7e7;
  }
  
  footer p {
    margin: 0;
    font-size: 1rem;
  }
  
  /* Image Styling */
  main img {
    border: 3px solid #ff8db9;
    border-radius: 8px;
    margin: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  main img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #ff8db9;
  }
  