@import url("https://fonts.googleapis.com/css2?family=Inconsolata&display=swap");
* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
body {
  font-family: "Inconsolata", monospace;

  background-color: #f1f7ff;
}
section h1 {
  text-align: center;
}
.fixed-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* Adjust the z-index as needed */
}

.information {
  margin: 10px;
  display: flex;
  justify-content: space-around;
}
.information a {
  font-size: 12px;
}
/* Additional styling if needed */

.bg-img {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-image: url(img/bg.jpg);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .bg-img {
    height: 30vh;
    /* Adjust padding for smaller screens */
  }
}
#container {
  background-image: url(img/4.jpg);
  background-size: cover;
  border-radius: 20px;
}

#show {
  display: none;
}

.rate {
  float: left;
  height: 46px;
  padding: 0 10px;
}
.rate:not(:checked) > input {
  position: absolute;
  top: -9999px;
}
.rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #ccc;
}
.rate:not(:checked) > label:before {
  content: "★ ";
}
.rate > input:checked ~ label {
  color: #ffc700;
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #deb217;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader img {
  max-width: 9%;
  height: auto;
}
#close {
  display: none;
}
#open-chat:hover {
  scale: 1.1;
}

#chat-container {
  display: none;
}
@media screen and (max-width: 480px) {
  .information {
    display: none;
  }
}
