    body, html {
      height: 100%;
      margin: 0;
      /* you can use "ALL" keyword for all transitions */
      transition: all 1s linear;
      font-family: Dafont;
    }
    @font-face {
      font-family: Dafont; /* deklarace */
      src: url("Comics\ Deluxe.ttf"); /* propojení na umístění souboru */
  }

    .full-page {
      display: flex;
      flex-direction: column;
      height: 100vh;
    }

    .navbar {
      flex: 0 0 auto;
      background-color: #dbba27;
    }
    .navbar a{
      font-size: 1.5rem;
      padding: 1rem;
      transition: background-color 0.5s linear, color 0.5s linear;
    }
    .navbar a:hover{
      border-radius: 10%;
      color: white;
      background-color: #a91c2c;
    }
  /* */
    .hero {
      flex: 1 1 auto;
    background: url('./vid/VID-20250325-WA0003.gif') no-repeat center center; 
      background-size: cover;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    .overlay {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-buttons .btn {
      margin: 0 10px;
    }
    #countdown {
      font-size: 3rem;
      color: #e2e2e2;
    }
    #lineup{
      background-color: gray;
      padding: 2rem;
    }

    @media (max-width: 576px) {
      .hero-buttons {
        flex-direction: column !important;
      }

      .hero-buttons .btn {
        margin: 5px 0;
      }
      #countdown {
        font-size: 2rem;
      }
      .navbar a{
        font-size: 1rem;
      }
      .navbar .dropdown{
        zoom: 65%;
      }
      input[type="text"],
      textarea {
      width: 100% !important;
      box-sizing: border-box;
    }
    }