	html {
		  scroll-behavior: smooth;
		}

    body {
      font-family: Arial, sans-serif;
      background: #f4f4f9;
      margin: 0;
      padding-top: 70px;
      padding-bottom: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
	  line-height: 1.5;
    }
	
    .navbar, .footerbar {
      position: fixed;
      left: 0;
      right: 0;
      background-color: #ffffff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1rem;
    }

    .navbar {
      top: 0;
      height: 60px;
    }
	
	.bild {
      height: 18px;
	  margin-bottom: -0.1rem;
    }

    .footerbar {
      bottom: 0;
      height: 50px;
      justify-content: center;
      gap: 2rem;
    }

    .navbar h1 {
      margin: 0;
      font-size: 1.4rem;
      color: #333;
	  text-decoration: none;
	  text-transform: uppercase;
    }

    .navbar nav a {
      margin-left: 1rem;
      text-decoration: none;
      color: #333;
      font-size: 1.6rem;
    }
	
	.navbar-skin nav a {
      margin-left: 0.3rem;
      text-decoration: none;
      color: #333;
      font-size: 2.4rem;
    }
	
	.footerbar a {
      margin-left: 1rem;
      text-decoration: none;
      color: #333;
      font-size: 1.0rem;
	  text-transform: none;
    }
	
    .emoji-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 1420px;
      margin: 0 auto;
    }

    .card {
      position: relative;
      background: white;
      border-radius: 0.6rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      width: 96px;
      height: 96px;
      margin: 0.4rem;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 4.2rem;
      cursor: pointer;
      transition: transform 0.2s;
      flex-direction: column;
    }

    .card:hover {
      transform: scale(1.05);
      background-color: #e0f7fa;
    }

    .popup {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #323232;
      color: #fff;
      padding: 0.25rem 0.5rem;
      border-radius: 0.5rem;
      font-size: 0.75rem;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
      pointer-events: none;
      white-space: nowrap;
      z-index: 1;
    }

    .popup.show {
      opacity: 1;
    }

    section {
      width: 100%;
      text-align: center;
      margin: 1rem 0;
    }

    hr {
      width: 75%;
      border: none;
      border-top: 2px solid #ccc;
      margin: 1.4rem auto;
    }

    h2 {
      margin-bottom: 1rem;
	  font-size: 1.4rem;
	  font-weight: 100;
    }
	
	/* Emoji Unterseiten inkl. mobile */
	
	.textcard {
      background-color: #transparent;
      border-radius: 10px;
      padding: 20px;
      width: 100%;
      max-width: 1420px;
      margin: auto;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: all 0.3s ease-in-out;
    }

    .card-header {
      font-size: 1.4rem;
      font-weight: bold;
    }

    .card-body {
      font-size: 1.2rem;
      color: #333;
      line-height: 1.5;
    }

    .card-footer {
      text-align: right;
      font-size: 1rem;
      color: #333;
    }

    /* Für kleinere Bildschirme */
    @media (max-width: 600px) {
      .textcard {
        width: 94%
      }

      .card-header {
        font-size: 1.2rem;
      }

      .card-body {
        font-size: 1rem;
		text-align:justify;
      }
    }
	
	/* Emoji more Bereich inkl. mobile */
	
	#emoji-more {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 16px;
	  justify-content: center;
	  padding: 10px;
	}

	.emoji-wrapper {
	  display: inline-block;
	  width: 160px;
	  text-align: center;
	}

	.emoji-link {
	  text-decoration: none;
	  font-size: 2.2rem;
	  display: block;
	  margin-bottom: 4px;
	}

	.emoji-label {
	  font-size: 1.0rem;
	  text-transform: uppercase;
	}

	@media (max-width: 768px) {
	  .emoji-wrapper {
		width: 100px;
	  }

	  .emoji-link {
		font-size: 2.4rem;
	  }

	  .emoji-label {
		font-size: 0.8rem;
	  }
	}

	@media (max-width: 480px) {
	  .emoji-wrapper {
		width: 78px;
	  }

	  .emoji-link {
		font-size: 2.2rem;
	  }

	  .emoji-label {
		font-size: 0.75rem;
	  }
	}

	/* responsive css ganze Seite */
	
    @media (max-width: 440px) {
      .navbar {
        flex-direction: column;
        height: auto;
        padding: 0.5rem;
      }

      .navbar h1 {
        display: none;
      }
	  
	   .bild {
      height: 16px;
     }

      .navbar nav a {
        margin: 0 0.5rem;
		font-size: 1.7rem;
      }
	  
	  .emoji-container {
      max-width: 440px;

     }

      body {
        padding-top: 100px;
        padding-bottom: 70px;
      }

      .card {
        width: 72px;
        height: 72px;
        font-size: 3.3rem;
        margin: 0.4rem;
      }

      .popup {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
      }
}