 * {
    box-sizing: border-box;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  
  body {
    background: url("img/background.jpg");
    font-family: "Comic Sans MS", "Arial", cursive, sans-serif;
    color: lime;
    text-align: center;
    margin: 0;
  }

  header {
    background: black;
    padding: 20px;
    border-bottom: 5px double lime;
  }

  h1 {
    font-size: 60px;
    color: white;
    text-shadow: 2px 2px gray;
    animation: blink 1s step-start infinite;
  }

  nav {
    background-color: #000080;
    padding: 10px;
    border-bottom: 3px dotted aqua;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav a {
    color: yellow;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
    font-size: 20px;
  }

  nav a:hover {
    text-decoration: underline;
    color: red;
  }

  main {
    background: url("#");
    border: 6px groove white;
    padding: 20px;
    margin: 20px auto;
    width: 85%;
  }

  marquee {
    color: white;
    font-size: 24px;
    font-weight: bold;
  }

  footer {
    background: black;
    color: white;
    font-size: 12px;
    padding: 20px;
    border-top: 2px solid cyan;
  }
  
  @keyframes blink {
    50% { opacity: 0; }
  }

  @media (max-width: 768px) {
    main {
      width: 100%;
      margin: 0;
      border: none;
      padding: 15px;
    }

    nav a {
      display: block;
      margin: 8px 0;
      font-size: 18px;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    marquee {
      font-size: 18px;
    }
  }
  
  @font-face {
    font-family: 'Comic Sans MS';
    src: url('inne/ComicSansMS.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}