
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}


:root {
  --body-color: #ffffff;
  --nav-color: #2770ff;
  --side-nav: #010718;
  --text-color: #FFF;
  --search-bar: #F2F2F2;
  --search-text: #010718;
   --font-color: #000;
   --more-color: #EBFF0049;
}
body::-webkit-scrollbar {
  display: none;
}
body {
  height: 100vh;
  background-color: var(--body-color);
    font-family: Amita, cursive;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}

body.dark {
  --body-color: #18191A;
  --nav-color: #242526;
  --side-nav: #242526;
  --text-color: #CCC;
  --search-bar: #242526;
  --font-color: #fff;
}
body.dark nav {
  border: 1px solid #393838;
}
body.dark .search-field input {
  color: var(--text-color);
}
body.dark .search-field i {
  color: var(--text-color);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 55px;
  width: 100%;
  background-color: var(--nav-color);
  z-index: 100;
  box-shadow: 0 6px 6px 0 rgb(0,0,0,.4);
}
nav .nav-bar {
  position: relative;
  height: 100%;
  max-width: 1000px;
  width: 100%;
  background-color: var(--nav-color);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .nav-bar .sidebarOpen {
  color: var(--text-color);
  font-size: 25px;
  padding: 5px;
  cursor: pointer;
  display: none;
}
nav .nav-bar .logo a {
  font-size: 25px;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
}

.menu .logo-toggle {
  display: none;
}

.nav-bar .nav-links {
  display: flex;
  align-items: center;
}
.nav-bar .nav-links li {
  margin: 0 5px;
  list-style: none;
}
.nav-bar .darkLight-searchBox {
  display: flex;
  align-items: center;
}

.nav-links li a {
  position: relative;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
  font-family: Amita, cursive;
  padding: 10px;
}
.nav-links li a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--text-color);
  opacity: 0;
  transition: all 0.3s ease;
}
.nav-links li:hover a::before {
  opacity: 1;
}

.darkLight-searchBox .dark-light {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.darkLight-searchBox .searchToggle {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.dark-light i {
  position: absolute;
  color: var(--text-color);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dark-light i.sun {
  opacity: 0;
  pointer-events: none;
}

.searchToggle i {
  position: absolute;
  color: var(--text-color);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.searchToggle i.cancel {
  opacity: 0;
  pointer-events: none;
}

.dark-light.active i.sun {
  opacity: 1;
  pointer-events: auto;
}
.dark-light.active i.moon {
  opacity: 0;
  pointer-events: none;
}

.searchToggle.active i.cancel {
  opacity: 1;
  pointer-events: auto;
}
.searchToggle.active i.search {
  opacity: 0;
  pointer-events: none;
}
.searchToggle.active ~ .search-field {
  bottom: -74px;
  opacity: 1;
  pointer-events: auto;
}

.searchBox {
  position: relative;
}
.searchBox .search-field {
  position: absolute;
  bottom: -60px;
  right: 5px;
  height: 50px;
  width: 300px;
  display: flex;
  align-items: center;
  background-color: var(--nav-color);
  padding: 3px;
  border-radius: 6px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.search-field::before {
  content: "";
  position: absolute;
  right: 14px;
  top: -4px;
  height: 12px;
  width: 12px;
  background-color: var(--nav-color);
  transform: rotate(-45deg);
  z-index: -1;
}
.search-field input {
  height: 100%;
  width: 100%;
  padding: 0 45px 0 15px;
  outline: none;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: Amita, cursive;
  font-weight: 400;
  color: var(--search-text);
  background-color: var(--search-bar);
}
.search-field i {
  position: absolute;
  color: var(--nav-color);
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 790px) {
  nav .nav-bar .sidebarOpen {
    display: block;
  }

  .menu {
    position: fixed;
    font-family: Amita, cursive;
    height: 100%;
    width: 320px;
    left: -100%;
    top: 0;
    padding: 20px;
    background-color: var(--nav-color);
    z-index: 100;
    transition: all 0.4s ease;
    box-shadow: 12px 0 12px -6px rgba(0, 0, 0, 0.2);
  }
  .menu .logo-toggle {
    display: block;
    width: 100%;
    font-family: Amita, cursive;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  nav.active .menu {
    left: 0%;
  }
  nav.active .nav-bar .navLogo a {
    opacity: 0;
    font-family: Amita, cursive;
    transition: all 0.3s ease;
  }

  .logo-toggle .siderbarClose {
  	font-family: Amita, cursive;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
  }

  .nav-bar .nav-links {
    flex-direction: column;
    padding-top: 30px;
  }

  .nav-links li a {
    display: block;
    font-family: Amita, cursive;
    margin-top: 20px;
  }
}

	.alignleft {
  float: left;
  margin-left: 5px;
  background-color: var(--bg-color);
  color: var(--font-color);
  font-family: Amita, cursive;
  font-weight: bold;
  font-size: 15px;
}

.alignright {
  float: right;
  margin-right: 10px;
  background-color: var(--bg-color);
  color: #0099cc;
  font-size: 15px;
  font-family: Amita, cursive;
  font-weight: normal;
}
h4 {
  margin-left: 5px;
  color: #0099cc;
  font-weight: bold;
  font-size: 15px;
}

.nta {
  overflow: hidden;
  background-color: var(--bg-color);
}
.cent {
  font-size: auto;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.scrollmenu::-webkit-scrollbar {
  display: none;
}
div.scrollmenu {
  background-color: var(--bg-color);
  overflow: auto;
  white-space: nowrap;
  overflow-y: hidden;
}

div.scrollmenu a {
    display: inline-block;
  color: white;
  text-align: center;
  padding: 4px;
  text-decoration: none;
  height: 130px;
  margin: 10px;
  border-radius: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);"
}

div.scrollmenu a:hover {
	filter: blur(3px);
  transform: scale(0.97);
  background-color: var(--bg-color);
}
div.scrollvoot::-webkit-scrollbar {
  display: none;
}
div.scrollvoot {
  background-color: var(--bg-color);
  overflow: auto;
  white-space: nowrap;
  overflow-y: hidden;
}
div.scrollvoot a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 4px;
  text-decoration: none;
  height: 130px;
  margin: 10px;
  border-radius: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
div.scrollvoot a:hover {
  background-color: var(--bg-color);
  filter: blur(3px);
  transform: scale(0.97);
}
.cen {
  text-align: center;
  width: 205px;
}

.nt {
  width: 205px; 
   border-radius: 15px; 
   height: 123px ; 
}
div.scrollme::-webkit-scrollbar {
  display: none;
}
div.scrollme {
  background-color: var(--bg-color);
  overflow: auto;

  white-space: nowrap;
  overflow-y: hidden;
}
div.scrollme a {
  display: inline-block;
  color: white;
  text-align: center;
  text-decoration: none;
  height: 255px;
  margin: 10px;
  border-radius: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
div.scrollme a:hover {
  background-color: var(--bg-color);
  filter: blur(3px);
  transform: scale(0.97);
}
.cean {
  text-align: center;
  width: 160px;
}
.net {
  width: 160px;
  border-radius: 15px;
  height: 255px;
}
.in{ 
   width: 205px; 
   border-radius: 5px; 
   height: 110px ; 
} 
div.ott::-webkit-scrollbar {
  display: none;
}
div.ott {
  background-color: var(--bg-color);
  overflow: auto;
  white-space: nowrap;
  overflow-y: hidden;
}
div.ott a {
  display: inline-block;
  color: white;
  text-align: center;
  text-decoration: none;
  height: 110px;
  margin: 10px;
  border-radius: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
div.ott a:hover {
  background-color: var(--bg-color);
  filter: blur(3px);
  transform: scale(0.97);
}
.cn {
  text-align: center;
  width: 205px;
}
.nit {
  width: 205px; 
   border-radius: 15px; 
   height: 110px ; 
}

.nature:hover { 
   filter: blur(3px);
   transform: scale(0.97);
  }

.nature{
	  margin-top: 15px;
	  margin-bottom: 10px;
	  border-radius: 10px;
   box-shadow: 2px 2px 5px rgba(0,0,0, .3); 
	}
	
	.up {
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-size: 15px;
  background-color: #2770ff;
  border: 2px solid #490a3d; 
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
  z-index: 999999;
}



footer {
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    background: var(--nav-color);
    color: var(--font-color);
}

footer p {
    padding: 25px 20px;
    text-align: center;
}

footer img {
    width: 45px;
    margin-bottom: -10px;
}