body {
  background-color: #001220;
  font-family: "Poppins", sans-serif;
}

html,body{
    overflow-x: hidden;
    width: 100%;
}

body{
    position: relative;
}

:root {
  --text-light: #d7d7d7;
  --primary: #a295f7;
}

a {
  color: inherit;
  text-decoration: none;
}

.hamburger-container {
  display: none;
  color: white;
}

.mobile-nav-container {
  background-color: #010d16;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 11;
  width: 100%;
  transform: translateX(100%);
  transition: 100ms transform ease-in-out;
  /* border: 2px solid white; */
}

.mobile-nav-container ul a li {
  margin: 20px 0px;
  list-style: none;
  text-align: center;
  font-size: 1.5rem;
}

.close-icon-container {
  position: absolute;
  top: 50px;
  right: 30px;
  /* border: 2px solid red; */
}

.close-icon-container span {
  font-size: 2rem;
}

.reveal {
  transform: translateX(0%);
}

.show-mobile-nav {
  flex-direction: column;
  background-color: #0b1d35;
  margin: 15px 0;
  padding: 15px 0;
  height: 200px;
}

.show-mobile-nav ul {
  flex-direction: column;
}

.hero {
  height: 40vh;
  width: 100%;
  /* border: 2px solid red; */
  /* background-image: url(../Assets/bg/codify\ bg.jpg); */
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(270deg, #000000 0%, #002b4d 100%);
  opacity: 0.8;
  z-index: 1;
}

.hero-header {
  color: white;
  z-index: 3;
  font-size: 2.5rem;
}

.event-desc {
  width: 80%;
  color: white;
  z-index: 2;
  text-align: center;
}

/* body section */

.body-container {
  height: auto;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: left;
  justify-content: space-between;
  color: white;
  /* border: 2px solid red; */
  width: 90%;
  margin: 0px auto;
}

.header-container h2 {
  font-size: 1.5rem;
  font-weight: 500;
}

.horizontal-line {
  height: 2px;
  flex: 1;
  margin-left: 20px;
  background-color: white;
  opacity: 0.2;
}

.guidelines-common {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 50px;
}

.content {
  /* border: 2px solid red; */
  width: 80%;
  color: var(--text-light);
  margin-top: 20px;
  font-weight: 400;
}

/* heads section */
.heads-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0px;
  color: white;
  margin-top: 50px;
}

.heads-container > h2 {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.5rem;
}

.heads-container > p > a {
  color: var(--primary);
}

/* media queries */

@media only screen and (max-width: 820px) {
  .nav-right {
    display: none;
  }

  .hamburger-container {
    display: inline;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 415px) {
  .event-desc {
    /* border: 2px solid red; */
    width: 90%;
    text-align: justify;
  }

  .content li {
    /* text-align: justify; */
    margin-bottom: 20px;
  }

  .header-container {
    flex-direction: column;
  }

  .horizontal-line {
    /* border: 2px solid red; */
    width: 90%;
    color: var(--text-light);
  }

  .heads-container {
    /* border: 2px solid red; */
    text-align: center;
    margin-bottom: 50px;
  }

  .heads-container h2 {
    text-decoration: underline;
  }

  .heads-container p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.2rem;
  }

  #hamburger-menu {
    display: block;
    /* border: 2px solid red; */
    font-size: 1.5rem;
    color: white;
  }
}
