  @import url('https://fonts.cdnfonts.com/css/hey-comic');

  /* 1. Use a more-intuitive box-sizing model */
    *, *::before, *::after {
        box-sizing: border-box;
    }
    
    /* 2. Remove default margin */
    * {
        margin: 0;
    }
    
    html {
        scroll-behavior: smooth;
    }

    body {
        /* 3. Add accessible line-height */
        line-height: 1.5;
        /* 4. Improve text rendering */
        -webkit-font-smoothing: antialiased;
    }
    main {
        flex: 1; /* Make main content take all space pushing footer down */
    }
    /* 5. Improve media defaults */
    img, picture, video, canvas, svg {
        display: block;
        max-width: 100%;
    }
    
    /* 6. Inherit fonts for form controls */
    input, button, textarea, select {
        font: inherit;
    }
    
    /* 7. Avoid text overflows */
    p, h1, h2, h3, h4, h5, h6 {
        overflow-wrap: break-word;
    }
  
    /* 8. Improve line wrapping */
    p {
        text-wrap: pretty;
    }
    
    h1, h2, h3, h4, h5, h6 {
        text-wrap: balance;
    }
    
    a {
        color: #ffffff;
        text-decoration: none;
    }
    
  /*
    9. Create a root stacking context
  */
    #root, #__next {
        isolation: isolate;
    }
  
    .container {
        width: 90%;
        margin: 0 20px;
    }
  
    img img {
        width: -webkit-fill-available;
        max-width: 100%;
    }

    body {
      margin: 0;
      font-family: 'Hey Comic', sans-serif;
      background-image: url(../img/bg.png);
      color: white;
      text-align: center;
    }
    .hero-main {  
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .hero-main img {
      width: 100%;
      height: auto;
      max-width: 1900px;
      border-radius: 10px;
    }
    
    .about-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      flex-direction: column;
      align-items: center;
      margin: 100px auto;
    }

    .about-description {
      width: 80%;
      margin: 0 auto;
    }
    .meet-description {
      display: flex;
      width: 80%;
      margin: 0 auto;
      justify-content: center;
      text-align: center;
    }

    .characters {
      margin: 50px auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
    }

    .char-btn {
      background: none;
      border: none;
      cursor: pointer;
    }

    .char-btn img {
      width: auto;
      height: auto;
      transition: transform 0.3s ease;
    }
    .char-btn:hover img {
      transform: scale(1.1);
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0; 
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    .modal img {
      max-width: 800px;
      max-height: 800px;
    }

    #closeBtn {
      position: absolute;
      z-index: 1000;
      top: 10px;
      right: 30px;
      font-size: 90px;
      color: rgb(0, 0, 0);
      cursor: pointer;
    }

    .socials-content {
      margin: 100px auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .social-icons {
      margin-top: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }
    .social-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin: 0 10px;
    }
    
    .end-disclaimer {
      margin: 50px auto;
    }