* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  font-size: 24px;
  line-height: 1.44;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x:hidden;
}
body {
  font-family: 'Itim', sans-serif;

  color: #FFF;
  background-color: #323232;
  margin: 0;

}
#Header {
  text-align: center;
  background-color: #175C76;
  padding: 0.01vw;
  margin-bottom: 5vw; /* Adds a gap below the header */
}
.irish-grover-regular {
  font-family: "Irish Grover", system-ui;
  font-weight: 400;
  font-style: normal;
}


.jaro {
  font-family: "Jaro", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.itim-regular {
  font-family: "Itim", cursive;
  font-weight: 400;
  font-style: normal;
}

#Header h1 {
  font-family: 'Irish Grover', cursive;
  font-size: 5vw;
  color: #FFF;
  margin-bottom: 5px; /* Reduces the space below the h1 */
}

#Header p {
  font-family: 'Irish Grover', cursive;
  font-size: 2vw;
  color: #FFF;
  top: 10vw;
  margin-top: 0; /* Removes extra space above the p */
}

#textboxes{
    
    width: clamp(550px, 20vw, 300px);
    color: #FFFFFF;
    background-color: black;
    background: #000000;
    text-align: center;
    top: 5vw;
    width: 70vw; /* Make it take up 90% of the screen width */
    max-width: 550px; /* Set a max width so it doesn't get too large */
    color: #FFFFFF;
    background-color: #1E1E1E;
    border: 10px solid #175C76;
   border-radius: 1vw;
    text-align: center;
    margin: 20px auto; /* Adds a gap above the text box and centers it */
    padding: 10px; /* Keeps padding for internal spacing */
    margin-bottom: 5vw;
 
    }

    section H2 {
      font-family: bebas-neue-regular;
      color: #FFFF;
      margin-top: 1px;
      margin-bottom: 5px; /* Reduces the space below the h2 */
      font-size: 5vw; /* Changes the font size */
      /* letter-spacing: 1vw; */
      font-size: 100%;
     
    }
section H3{
  font-family: bebas-neue-regular;
      color: #FFFF;
      margin-top: 1px;
      margin-bottom: 5px; /* Reduces the space below the h2 */
    
      /* letter-spacing: 1vw; */
      font-size: 1.3rem;
     
}
    section p{
      font-size: 70%;
      overflow-wrap: anywhere;
      text-align: left;
    }

  .shotcutimg {
    
    width: 50%;
  }

  .yt{
    width:100%;
  }
    .scaling:hover{
      transform: scale(1.2);
      transition: transform 0.5s;
 
    }

    .container {
      display: grid;
     grid-template-columns: 100px 100px;
      gap: 20px;
    }

    .grid-container {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
      display: grid;
      /* grid-template-columns: 1fr 1fr; Two equal columns */
      gap: 10px; /* Space between the columns */
      margin: 20px auto; /* Center the grid and add spacing */
      max-width: 1200px; /* Optional: Limit the width of the grid */

    }

    iframe {
      width: 100%; /* Make the iframe responsive */
      height: 200px;
      border: none;
    }

    #logo{
      animation-name: walkingAround;
       animation-duration: 9s;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
      }
      
      @keyframes walkingAround{
      0%{
          transform: translateX(0px);
      }
      48%{
          transform: translateX(3.3vw);
      }
      
      50%{
          transform: rotateY(180deg) translateX(-3.3vw);
      }
      
      98%{
          transform: translateX(0px) rotateY(-180deg);
      }
      
      100%{
          transform: translateX(0px);
      }
    }
      #rotation{
        transition: transform 250ms;
  
      }
    
      #rotation:hover{
        transform: rotate(360deg);
    }
  