@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 {
    background-color: #14171A;
    font-family: 'Satisfy', cursive;
    background-image: url("");
    background-repeat: no-repeat;
    background-position-x: center; 
    margin: 0;
    color: white;
    padding: 0;

  }


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


#num {
  color: red;
}


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

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

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

::-webkit-scrollbar {
    display: 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;
}


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

  .main {
    background-image: url('https://cdn.dribbble.com/users/722246/screenshots/2737322/find-_-book-meeting-rooms.gif');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
  }

  .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;
  }


  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; 
  } 

  .form {
    
    margin: 0;
    padding: 20px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: black;
  }

  form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  form input[type="text"],
  form input[type="date"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 6px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
  }

  select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 6px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
  }


form input[type="button"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
}


form input[type="button"]:hover {
  background-color: #45a049;

}

  form input[type="range"] {
    padding: 10px 15px;
    width: 25%;
  }

  form input[type="reset"] {
    background-color: #ff0000;
    color: #ff0000;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
  }

  form input[type="reset"]:hover {
    background-color: #d31a1a;
    color: #d31a1a;
  }

  #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;
  }
  
