@import "tailwindcss";



* {
 
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}


.nav-link {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    color: black;
    
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #233680;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
  }
  
  .nav-link:hover {
    color: black;
  }
  
  .nav-link:hover::after {
    transform: scaleX(1);
  }
  /* animation */

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  .animate-fadeIn {
    animation: fadeIn 1s forwards;
  }

  /* canvas animation */
  
  #fogCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
  }

  /* end */
  


  @media (min-width: 768px) and (max-width: 1024px ) {
    .main-profil{
     left: 50px;
     bottom: 20px;
     
    }
    .prufung{
     display: grid;
     grid-row: 2;
     width: max-content;
     top: 600px;


    }
    .prufung h3{
     padding-top: 10px;
    }

    /* schoose section */
    .title h1{
     text-align: center;
     padding-bottom: 30px;
    }
    .cart{
     gap: 10px;
    }
    .paragraph{
     width: 200px;
     height: 300px;

    }
    .cart-stat{
     width: max-content;
     
    }
    .stat-1{
     padding-left:100px ;

    }
    .stat-3{
     padding-right: 30px;
    }


    /* schoose section */
    .Testimonials{
     height: max-content;
     margin-top: 300px;
     background-color: white;
    }
    .testi-title h1{
       text-align: center;
       
    }
  
  }

  @media (min-width: 0px) and (max-width: 640px ) {
    .chose {
      height: 140vh;
      background-size: cover;
      overflow: hidden;
      background-attachment: fixed ;
      background-position: center;
      
      
  
    }


  }

  @media (min-width: 0px) and (max-width: 200px ) {
    .Testimonials {
      height: max-content;
      margin-top:1300px ;
    }
   


  }

 
  

    



