
#body {
  background-color: #130f40;
    background-image: linear-gradient(315deg, #130f40 0%, #000000 74%);
    padding-bottom: 0%;
}
/*-------------------------------------------------navbar-------------------------*/
.nav__container h4{
  margin-right: 70px;
}
nav{
  text-decoration: none;
  background: transparent;
  width: 100vw;
  height: 5rem;
  position: fixed;
  top: 0;
  z-index: 10001;
}


.window-scroll {
  background-color: rgba(105, 98, 98, 0.322);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__container{
  padding-top: 0.8rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#open-menu-btn,#close-menu-btn{
  display: none;
}
.nav__menu{
  padding-right: 1.9rem;
  color: white;
  font-weight: bold;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.nav__menu a{
  text-decoration: none;
  margin-left: 0.3rem;
  color: white;
  font-size: 1.1rem;
  transition: var(--transition);
}

.nav__menu a:hover,
.nav__menu a.active{
  background: #0bdaff;
  display: block;
}

#nedpic{
  margin-left: -2.3rem;
}
#nedpic{
  margin-bottom: 0.9rem;
  width: 80px;
  padding: 5px;
}


@media screen and (max-width: 1150px){
  nav button{
    display: inline-block;
    background: transparent;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}
#open-menu-btn{
    display: flex;
}
#close-menu-btn{
    display: none;
}
.active{
  text-align: center;
}


.nav__menu{
    position: fixed;
    top: 5rem;
    right: -1%;
    height: fit-content;
    width: 23rem;
    flex-direction: column;
    gap: 0;
    display: none;
}

.nav__menu a{
    width: 100%;
    height: 3rem;
    background: linear-gradient( 110.3deg,  rgba(73,93,109,1) 4.3%, rgba(49,55,82,1) 96.7% );
    box-shadow: -4rem 6rem 10rem rgba(0,0,0,0.6);
    display: grid;
    place-items: center;
    animation: animateNavItems 400ms linear forwards;
    transform-origin: top right;
    opacity: 0;
} 

.nav__menu a:nth-child(2){
    animation-delay: 100ms;
}
.nav__menu a:nth-child(3){
    animation-delay: 200ms;
}
.nav__menu a:nth-child(4){
    animation-delay: 300ms;
}
.nav__menu a:nth-child(5){
    animation-delay: 400ms;
}
.nav__menu a:nth-child(6){
    animation-delay: 500ms;
}
.nav__menu a:nth-child(7){
    animation-delay: 600ms;
}
.nav__menu a:nth-child(8){
    animation-delay: 700ms;
}
.nav__menu a:nth-child(9){
    animation-delay: 800ms;
}

@keyframes animateNavItems {
    0%{
        transform: rotateZ(-90deg) rotateX(90deg) scale(0.1);
    }
    100%{
        transform: rotateZ(0) rotateX(0) scale(1);
        opacity: 1;
    }
}

.nav__menu a:hover{
  background: #0bdaff;
}

#nedpic{
    margin-left: 0;
}

}
/* ----------------------------------------------ACTIVITY HEADING-------------------------------------- */
#act_h1{
    font-family: 'Source Serif Pro', serif !important ;
    margin-top: 3% ;
    font-size : 60px ;
    letter-spacing: 2px;
    font-weight: bolder;
}


@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600");

:root {
  --bar-scale-y: 0;
  --sparkle-color: rgb(253 244 215 / 40%);
}

@keyframes pop-word {
  to {
    transform: rotateX(0);
  }
}

@keyframes show {
  to {
    opacity: 1;
  }
}

@keyframes bar-scale {
  to {
    transform: scaleY(1);
  }
}

@keyframes sparkle {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1) translate(4px, 1px) rotate(8deg);
  }

  100% {
    transform: scale(0) translate(4px, 1px) rotate(8deg);
  }
}

@keyframes shimmer {
  to {
    text-shadow: 0 0 8px red;
  }
}

body {
  display: grid;
  height: 100vh;

  background-color: black;
  place-items: center;
}

h1 {
  color: white;
  font-family: "Playfair Display", Vidaloka, serif;
  font-size: 8rem;

  line-height: 0.85;
  perspective: 500px;
}

.word {
  display: block;

  animation: show 0.01s forwards, pop-word 1.5s forwards;
  animation-timing-function: cubic-bezier(0.14, 1.23, 0.33, 1.16);
  opacity: 0;

  transform: rotateX(120deg);
  transform-origin: 50% 100%;
}

.word:nth-of-type(2) {
  padding: 0 2rem;

  animation-delay: 1.0s;

  color: rgba(27,80,116,1);

}

.superscript {
  position: relative;
  animation-delay: 3.6s;

  animation-duration: 0.25s;
  animation-name: shimmer;

  vertical-align: text-top;
}

/* bars */
.superscript::before {
  --bar-width: 25%;

  position: absolute;

  top: 37%;
  left: 47%;
  width: 14%;
  height: 48%;

  animation: bar-scale 0.25s linear 3s 1 forwards;

  background: linear-gradient(
    to right,
    white var(--bar-width),
    transparent var(--bar-width) calc(100% - var(--bar-width)),
    white calc(100% - var(--bar-width))
  );

  content: "";

  transform: scaleY(var(--bar-scale-y));
}

/* sparkle */
.superscript::after {
  --size: 10rem;

  position: absolute;

  top: -5%;
  left: -85%;

  width: var(--size);
  height: var(--size);

  animation: sparkle 0.4s linear 3.5s 1 forwards;

  background: radial-gradient(
      circle at center,
      rgb(252 249 241 / 94%) 0% 7%,
      transparent 7% 100%
    ),
    conic-gradient(
      transparent 0deg 18deg,
      var(--sparkle-color) 18deg,
      transparent 20deg 40deg,
      var(--sparkle-color) 40deg,
      transparent 43deg 87deg,
      var(--sparkle-color) 87deg,
      transparent 95deg 175deg,
      var(--sparkle-color) 175deg,
      transparent 178deg 220deg,
      var(--sparkle-color) 220deg,
      transparent 222deg 270deg,
      var(--sparkle-color) 270deg,
      transparent 275deg 300deg,
      var(--sparkle-color) 300deg,
      transparent 303deg 360deg
    );

  border-radius: 50%;
  clip-path: polygon(
    50% 0,
    59.13% 26.64%,
    85.13% -2.35%,
    100% 50%,
    50% 100%,
    0 50%,
    31.39% 34.86%
  );

  content: "";

  filter: blur(1px);

  transform: scale(0);
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 5rem;
  }

  /* sparkle */
  .superscript::after {
    --size: 6rem;
  }
}

/* ----------------------------------------------ACTIVITY HEADING END-------------------------------------- */
/* ---------------------------------------------EVENTS CARDS--------------------------------------- */
/* 
=========================
Fonts
=========================

font-family: 'Outfit', sans-serif;

*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

/* 
========================
Variables
========================
*/


:root {
    
    font-size: 15px;
    
    /* Primary */
    --var-soft-blue: hsl(215, 51%, 70%);
    --var-cyan: hsl(178, 100%, 50%);
    /* Neutral */
    --var-main-darkest: hsl(217, 54%, 11%);
    --var-card-dark: hsl(216, 50%, 16%);
    --var-line-dark: hsl(215, 32%, 27%);
    --var-lightest: white;
    
    /* Fonts */
    
    --var-heading: normal normal 600 1.5em/1.6em 'Outfit', sans-serif;
    
    --var-small-heading: normal normal 400 1em/1em 'Outfit', sans-serif;
    
    --var-para: normal normal 300 1em/1.55em 'Outfit', sans-serif;
}

/* 
=======================
Setup
=======================
*/

html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
}

body {
    background-color: var(--var-main-darkest);
}

img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

a {
    color: inherit;
}

/* 

Eye view

https://i.postimg.cc/9MtT4GZY/view.png' border='0' alt='view */

/*
=========================
Font Styling
=========================
*/

h1 {
    font: var(--var-heading);
    color: var(--var-lightest);
    padding: 1.2em 0;
}

h2 {
    font: var(--var-small-heading);
    color: var(--var-lightest);
    /* padding on .coin-base */
}

p {
    font: var(--var-para);
    color: var(--var-soft-blue);
}

span {
    color: white;
}
/* 
=====================
Classes
=====================
*/

/* LAYOUT */

.card-container {
    width: 100%;
    max-width: 400px;
    margin: 2em auto;
    background-color: var(--var-card-dark);
    border-radius: 15px;
    margin-bottom: 1rem;
    padding: 2rem;
}

div.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div.coin-base, .time-left, .card-attribute {
    display: flex;
    align-items: center;
    padding: 1em 0;
}

.card-attribute {
    padding-bottom: 1.5em;
    border-top: 2px solid var(--var-line-dark);
}

a.hero-image-container {
    position: relative;
    display: block;
}



/* Details */

img.eye {
    position: absolute;
    width: 100%;
    max-width: 2em;
    top: 44%;
    left: 43%;
}

@media (min-width:400px) {
  img.eye {
    max-width: 3em;
}
}

.hero-image-container::after {
    content: '';
    background-image: url("https://i.postimg.cc/9MtT4GZY/view.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 5rem;
    background-color: hsla(178, 100%, 50%, 0.3);
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.small-image {
    width: 1.2em;
    margin-right: .5em;
}

.small-avatar {
    width: 2em;
    border-radius: 200px;
    outline: 2px solid white;
    margin-right: 1.4em;
}

div.attribution {
    margin: 0 auto;
    width: 100%;
    font: var(--var-para);
    text-align: center;
    padding: 1.5em 0 4em 0;
    color: var(--var-line-dark);
}
.attribution a {
    color: var(--var-soft-blue);
}
@media screen and (max-width: 600px) {
  .nav__menu a:hover {
      background: #000046;
      /* fallback for old browsers */
      background: -webkit-linear-gradient(to right, #1CB5E0, #000046);
      /* Chrome 10-25, Safari 5.1-6 */
      background: linear-gradient(to right, #1CB5E0, #000046);
      /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
      display: block;
      text-align: center;
      color: aliceblue;
  }
   }

@media (min-width:600px) {
    body {
        font-size: 18px;
    }


}
/* -------------------------------------- EVENTS CARDS END--------------------------------------- */
/* ----------------------------------------FOOTER---------------------------------------------------------- */



#nedpic {
  margin-top:3px ;
  position: relative;
  width: 100px;
  padding: 3px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* ----------------------------------------------FOOTER END--------------------------------------------- */

footer {
  background-image: linear-gradient(94.3deg, rgba(26, 33, 64, 1) 10.9%, rgba(81, 84, 115, 1) 87.1%);
color: #fff;
padding-top: 40px;
padding-bottom: 20px;
font-family: "Montserrat Medium";
}

footer h4 {
font-size: 20px;
margin-bottom: 20px;
}

footer p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 30px;
}

footer ul {
margin: 0;
padding: 0;
list-style: none;
}

footer ul li {
margin-bottom: 10px;
}

footer ul li a {
color: #fcfcfc;
text-decoration: none;
}

footer .col-md-4 {
text-align: center;
}

footer .col-md-4 ul li {
display: inline-block;
margin-right: 10px;
}

footer .col-md-4 ul li:last-child {
margin-right: 0;
}

footer .col-md-4 ul li a i {
font-size: 24px;
}

footer .social-icons li {
display: inline-block;
margin-right: 10px;
}

footer .social-icons li:last-child {
margin-right: 0;
}

footer .social-icons li a {
display: block;
height: 40px;
width: 40px;
border-radius: 50%;
background-color: #fff;
text-align: center;
line-height: 40px;
color: #111;
transition: all 0.3s ease;
}

footer .social-icons li a:hover {
background-color: #3b5998;
color: #fff;
}

footer .footer-bottom {
background-color: #000;
padding: 10px 0;
text-align: center;
}

footer .footer-bottom p {
margin: 0;
font-size: 14px;
color: #fff;
}

footer .useful-links {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 40px;
}

footer .useful-links ul {
margin: 0;
padding: 0;
list-style: none;
}

footer .useful-links ul li {
margin-bottom: 10px;
}

footer .useful-links ul li a {
color: #fff;
text-decoration: none;
font-size: 16px;
}

footer .useful-links ul li a:hover {
color: white;
}
.links li a:hover{
  color: #0bdaff;
}

@media screen and (max-width: 767px) {
footer .col-md-4 {
  margin-bottom: 30px;
}

footer .useful-links {
  flex-direction: column;
}

footer .useful-links ul li {
  margin-bottom: 20px;
}

footer .useful-links ul li:last-child {
  margin-bottom: 0;
}
}


