@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap");

* {
  margin: 0;
  padding: 0;
  background-color: #1e1e24;
  color: #fafbf9;
  font-family: "poppins", sans-serif;
}
/** Navigational Bar/Header **/
nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 90px;
  background-color: #130b1e;
}

.logo {
  font-family: "poppins", sans-serif;
  font-size: 30px;
  text-decoration: none;
  background-color: #130b1e;
}

.logo a {
  text-decoration: none;
  background-color: #130b1e;
}

.logo a:hover {
  font-size: 2.5rem;
  color: #6ec1e4;
  background-color: #130b1e;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  background-color: #130b1e;
}

.nav-links li {
  background-color: #130b1e;
}

.nav-links a {
  display: block;
  padding: 30px 16px;
  background-color: #130b1e;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  transition: all ease-in-out 100ms;
}

.nav-links a:hover {
  font-size: 17px;
  color: #6ec1e4;
}

.nav-links .nav-cta-button {
  padding: 10px 18px;
  margin-left: 16px;
  border: #6ec1e4 solid 2px;
  border-radius: 50px;
  background-color: #130b1e;
}

.nav-cta-button:hover {
  font-size: 16px;
  color: #6ec1e4;
}

.paneerkathirool {
  display: none;
  cursor: pointer;
  width: 34px;
}

.paneerkathirool .bar {
  flex-basis: 100%;
  height: 4px;
  background-color: #130b1e;
  margin: 3px;
}

/* For making it responcive */

@media (max-width: 768px) {

  nav {
    width: auto;
    flex-wrap: wrap;
  }

  .paneerkathirool {
    display: flex;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 30px;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-wrap: wrap;
  }

  .nav-links li {
    flex-basis: 100%;
  }

  .nav-links a {
    text-align: center;
    font-size: 28px;
  }

  .nav-links a:hover {
    background-color: #6ec1e4;
  }

  .nav-links .nav-cta-button {
    padding: 30px 16px;
    margin-left: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
  }

  .nav-links .nav-cta-button:hover {
    background-color: #6ec1e4;
  }
}

/* Footer */

footer {
  display: flex;
  background-color: #130b1e;
  height: auto;
}

.footer {
  display: flex;
  background-color: #130b1e;
  margin: 10px 30px;
}
.footer .footerfirst h3 {
  background-color: #130b1e;
  font-size: x-small;
  font-style: none;
}
