@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');



* {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    scroll-behavior: smooth;
}

body {
    font-family: 'Satisfy', cursive;
    background-image: url("");
    background-repeat: no-repeat;
    background-position-x: center; 
    margin: 0;
    padding: 0;
    background-color: #14171A;
    color: white;
}



.fade-in { 
  animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}




::-webkit-scrollbar {
    display: none;
}

a {
  color: white;
  text-decoration: none;
}




  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
    opacity: 1;
    position: fixed;
    width: 100%;
    z-index: 100;

  }

  li {
    float: left;
  }

  li a {
    opacity: 100;
    display: block;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

  li a:hover {
    background-color: #868686;
  }

  .contact {
    float: right;
  }

  .active {
    background-color: gold;
  }


  .main {
    background-image: url('https://holiday2go.netlify.app/Assets/Images/main.gif');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
   
  }

  .main-content {
    text-align: center;
  }

  .main-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .main-content #num {
    color: red;
  }


  #num {
    color: red;
  }
  .main-content p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  footer {
    background-color: transparent;
    text-align: center;
    padding: 10px;
  }

  h1 {
    text-align: center;

  }

button {

  display: inline-block;
  outline: none;

  padding: 0 16px;
  background-color: #fff;
  border-radius: 0.25rem;
  border: 2px solid #dddbda;
  color: #0070d2;
  line-height: 30px;



}

button:hover {
  background-color: #aaaaaa; 
} 



.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.imgrow {
  flex: 200px;
  margin: 10px;
  transition: transform 0.3s ease;
}

.imgrow img {
  width: 100%;
  height: auto;
}

.imgrow:hover {
  transform: scale(0.95);
}



#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #14171A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loader {
  border: 16px solid transparent;
  border-top: 16px solid white;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#content {
  display: none;
}
