@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

body {
  font-family: "Cairo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

/* Top Header */
.top-header {
  background-color: #1ba3c6;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-header a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.top-header a:hover {
  color: #e0e0e0;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons a {
  color: white;
  font-size: 18px;
  margin: 0 5px;
}

.social-icons a:hover {
  color: #e0e0e0;
}



/* Responsive */
@media (max-width: 768px) {
  .top-header {
    text-align: center;
  }

}


