html,
body {
  background-color: #001524;
  color: #f8f9fa;
  user-zoom: fixed;
  user-select: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
  justify-content: center;
  font-family: "General Sans", sans-serif;
}

/* Preloader */
.preloader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #001524;
  height: 100vh;
  width: 100vw;
  z-index: 100;
  gap: 10px;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.preloader.fade {
  opacity: 0;
  z-index: -100;
}

#preloader-img {
  width: 125px;
  transform: rotate(15deg);
}

/* Main Container */
.main.preloading {
  z-index: -200;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.main.steady {
  width: 320px;
  height: 95%;
  opacity: 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

#header {
  background-color: #f8f9fa;
  border-radius: 50px;
  display: flex;
  width: 100%;
  justify-content: center;
  position: relative;
  top: 30px;
  box-shadow: 0px 0px 10px #f5a153;
}

#logo {
  width: 200px;
}

#subheader {
  font-weight: 600;
  font-size: 16px;
}

ul {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  list-style: none;
  gap: 60px;
  width: 100%;
}
ul a {
  text-decoration: none;
  color: #f8f9fa;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  gap: 20px;
  background-color: #1e6091;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  position: relative;
  padding-left: 10px;
  width: 100%;
  line-height: 40px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px #1e6091;
}
ul a:hover {
  filter: contrast(1.75);
}

#general-info {
  background-color: #09a67c;
}
#emergency {
  background-color: #d24854;
}
#service {
  background-color: #f5a153;
}
#dev-info {
  background-color: #9489da;
}
#list-icons {
  width: 40px;
}
