* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
}

:root {
  html {
    font-size: 62.5%;
  }

  /* CSS Varibales here */
  --text-color-primary: white;
  --text-color-seconday: rgb(148, 148, 148);
  --shadow: 0rem 0.3rem 0.5rem 0.1rem rgba(33, 33, 33, 0.381);
}

/* Common Classes Start Here */
html {
  font-family: sans-serif;
  color: var(--text-color-primary);
}

body {
  color: var(--text-color-primary);
  background-color: rgba(197, 197, 197, 0.936);
  position: relative;
}

a {
  text-decoration: none;
}

/* Common Classes End Here */

/* Specific Classes Start Here */
header {
  background: linear-gradient(
    120deg,
    rgba(35, 35, 35, 0.954),
    rgba(27, 28, 28, 0.922)
  );
  box-shadow: var(--shadow);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  padding: 0 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.5rem;
  animation: appearFromTop 400ms ease-in 1;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: orange;
  display: inline-block;
  cursor: pointer;
}

.logo:hover {
  /* transition: color 500ms ease-in; */
  animation: logoColorChange 1500ms ease-in infinite alternate;
}

.navlinks {
  display: flex;
  gap: 1rem;
}

.navlinks li {
  list-style-type: none;
}

.navlink {
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  color: var(--text-color-primary);
  display: inline-block;
  transition: all 200ms ease-in;
}

.navlink:hover {
  background-color: blueviolet;
  transform: scale(1.1);
}

.active-link {
  border: 0.06rem solid blueviolet;
}

/* Notice Section Code here */

.main-section {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 5rem;
  position: relative;
    background: linear-gradient(
    130deg,
    rgb(72, 72, 72),
    gray
  );
}

.video-container {
  width: calc(100% - 2rem);
  max-width: 60rem;
  aspect-ratio: 16/9;
  background: rgba(115, 115, 115, 0.484);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  animation: float 1000ms ease-in infinite alternate;
  overflow: hidden;
  z-index: 5;

  iframe {
    height: 100%;
    width: 100%;
    z-index: 5;
  }
}

.scrollDown {
  position: absolute;
  bottom: 2rem;
  background-color: rgb(28, 20, 59);
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  animation: floatMore 1200ms ease-in 200ms infinite alternate;
  /* animation: pulse 1500ms ease-in infinite alternate; */
}

.footer {
  width: 100%;
  /* height: 10rem; */
  padding: 1.5rem 2rem;
  background: #363636f6;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  font-weight: medium;
}

@media (width >= 900px) {
  .footer,
  header {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .main-section {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
@media (width >= 1200px) {
  .footer,
  header {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}














.first-para {
  text-align: justify;
  color: rgb(164, 164, 164);

  b {
    color: rgb(231, 231, 231);
  }
}

.second-para {
  text-align: justify;
  color: rgb(164, 164, 164);
}
.third-para {
  text-align: justify;
  color: rgb(164, 164, 164);
  b {
    color: rgb(231, 231, 231);
  }
}

.requestText {
  text-align: center;
  color: rgb(239, 216, 255);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.requestText-notes {
  text-align: center;
  color: rgb(239, 216, 255);
  margin-bottom: 0.8rem;
  font-weight: 700;
  margin-top: 0rem;
}

.sociallinks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.sociallink {
  height: 1.5rem;
  transition: all 200ms ease-in;
  box-sizing: content-box;
  padding: 0.4rem;
  border-radius: 10px;
  animation: float 1000ms ease-in infinite alternate;
}

.sociallink:hover {
  transform: scale(1.2);
  background: rgb(213, 213, 213);
}

.sociallink:active {
  transform: scale(0.9);
}

/* Notice Section End here */

/* Notes Section Start here */

.notes-container {
  margin-top: -2rem;
  width: 100%;
  min-height: 100dvh;
  background: #7274e0;
  background: linear-gradient(
    130deg,
    rgb(72, 72, 72),
    gray
  );

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: start;
  gap: 0.5rem;
  padding: 1.4rem;
  padding-top: 2rem;

  @media (width >=850px){
     padding-top: 5rem;
  }



  a {
    display: inline-block;
    width: 25rem;
    border-radius: 0.3rem;
    border: 0.1rem solid rgba(199, 196, 196, 0.724);
    transition: all 200ms ease-in;

    div {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.5rem;

      img {
        height: 4rem;
      }
      span {
        font-size: 1.3 rem;
        color: whitesmoke;
      }
    }
  }

  a:hover {
    transform: scale(1.01);
  }
  a:active {
    transform: scale(0.99);
  }
}

.notes-container a:nth-child(even) {
  animation: appearFromLeft 400ms ease-in 1;
}

.notes-container a:nth-child(odd) {
  animation: appearFromRight 400ms ease-in 1;
}

@media (width >= 690px) {
  .notes-container a:nth-child(even) {
    animation: appearFromBottom 400ms ease-in 1;
  }

  .notes-container a:nth-child(odd) {
    animation: appearFromBottom 400ms ease-in 1;
  }
}

.noMargin {
  margin-top: -9rem;
}

/* Notes Section End here */

/* Specific Classes End Here */

/* Animation Frames Start here */
@keyframes logoColorChange {
  0% {
    color: rgb(98, 253, 20);
    transform: translateY(0);
  }
  25% {
    color: rgb(32, 236, 255);
    transform: translateY(0.2rem);
  }
  50% {
    color: rgb(253, 57, 178);
    transform: translateY(0);
  }
  75% {
    color: rgb(197, 196, 192);
    transform: translateY(0.2rem);
  }
  100% {
    color: rgb(133, 58, 255);
    transform: translateY(0);
  }
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(0.3rem);
  }
}

@keyframes floatMore {
  from {
    transform: translateY(0);
    opacity: 0.2;
  }
  to {
    transform: translateY(0.7rem);
    opacity: 0.5;
  }
}

@keyframes appearFromLeft {
  from {
    transform: translateX(-7rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes appearFromRight {
  from {
    transform: translateX(7rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes appearFromTop {
  from {
    transform: translateY(-4rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes appearFromBottom {
  from {
    transform: translateY(4rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animation Frames End here */

a {
  text-decoration: none;
}
