* {
  font-family: "Readex Pro";
}

body {
  background-color: #18141c;
  margin: 0;
  padding: 0;
}

.spacer {
  height: 100px;
}

h2 {
  color: white;
  /* font-size: 30px; */
}

a {
  text-decoration: none;
}

/* Landing Page [Start]*/
.landingPage {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
}

.landingPage .eventTitle {
  text-align: center;
}

.landingPage .eventTitle span {
  color: white;
  font-size: 50px;
  margin: 10px;
}

.landingPage .eventTitle h1 {
  color: #14141f;
  background: linear-gradient(-45deg, #e250e5, #4b50e6, #e250e5, #4b50e6);
  -webkit-background-clip: text;
  -webkit-text-stroke: 6px transparent;
  -webkit-text-fill-color: #14141f;
  letter-spacing: 7px;
  font-size: 120px;
  margin: 0;
  padding: 10px;
}

@media screen and (max-width: 450px) {
  .landingPage .eventTitle h1 {
    font-size: 60px;
    -webkit-text-stroke: 4px transparent;
  }
  .landingPage .eventTitle span {
    font-size: 30px;
  }
  .landingPage .gradient2,
  .gradient1 {
    max-width: 100%;
  }
}

.landingPage .gradient1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.landingPage .gradient2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.landingPage .registerBtn {
  border: 2px solid #5142fc;
  padding: 12px 20px;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  margin-top: 30px;
  transition: 0.5s;
}

.landingPage .registerBtn:hover {
  background-color: white;
  border: 2px solid white;
  color: #5142fc;
}

/* .landingPage .circle1 {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 100px;
  background: linear-gradient(-45deg, #e250e5, #4b50e6);
  animation: moving 10s infinite 5s;
} 

@keyframes moving {
  from {
    right: 80px;
  }
  50% {
    right: 180px;
  }
  to {
    right: 80px;
  }
} */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid rgb(77, 77, 77);
  backdrop-filter: blur(5px);
  background: rgba(59, 59, 59, 0.336);
}

.header nav {
  margin: 5px 120px;
  display: flex;
  min-height: 60px;
  justify-content: space-between;
  align-items: center;
}

.header span {
  background: linear-gradient(-45deg, #e250e5, #4b50e6);
  font-size: 20px;
  font-weight: 600;
  -webkit-background-clip: text;
  -webkit-text-stroke: transparent;
  -webkit-text-fill-color: transparent;
}

.header a {
  border: 2px solid #5142fc;
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  transition: 0.5s;
  text-decoration: none;
}

.header a:hover {
  background-color: white;
  border: 2px solid white;
  color: #5142fc;
}

@media screen and (max-width: 450px) {
  .header nav {
    margin: 5px 20px;
  }
}

/* Landing Page [End] */

/* Organisers Logo Section [Start] */
.orgLogoContainer {
  display: flex;
  width: 100%;
  justify-content: center;
}

.orgLogos {
  display: flex;
  max-width: 70%;
  align-items: center;
  background: linear-gradient(45deg, #631c64, #202377);
  border-radius: 30px;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: center;
}

.orgLogos img {
  max-width: 100px;
  margin: 20px;
  height: auto;
}

/* Event Details Container */
.eventDetailsContainer {
  width: 100%;
  color: white;
}

.eventDetailsContainer .padding {
  padding: 0px 120px;
  display: flex;
}

.eventDetailsContainer .videoContainer {
  width: 50%;
  text-align: left;
}

.eventDetailsContainer .videoContainer iframe {
  border: none;
  width: 100%;
  height: 400px;
}

.eventDetailsContainer .details {
  width: 50%;
  flex-direction: column;
  display: flex;
  /* justify-content: space-evenly; */
  align-items: center;
}

.eventDetailsContainer .details .detailsItem {
  text-align: left;
  margin: 20px 0px;
}

.eventDetailsContainer .details i {
  font-size: 25px;
  color: white;
  margin-right: 10px;
}

.eventDetailsContainer .details span {
  font-size: 18px;
  font-weight: 400;
}

.eventDetailsContainer .details .detailsLinkItem {
  margin-top: 50px;
}

.eventDetailsContainer .details .detailsLinkItem a {
  border: 2px solid #5142fc;
  padding: 12px 20px;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  transition: 0.5s;
}

.eventDetailsContainer .details .detailsLinkItem a:hover {
  background-color: white;
  border: 2px solid white;
  color: #5142fc;
}

@media screen and (max-width: 450px) {
  .eventDetailsContainer .details {
    width: 100%;
    align-items: flex-start;
  }
  .eventDetailsContainer .videoContainer iframe {
    width: 100%;
    height: 200px;
  }
  .eventDetailsContainer .videoContainer {
    width: 100%;
  }
  .eventDetailsContainer .padding {
    flex-direction: column;
    padding: 0px 20px;
  }
}

/* Content */
.contentMasterContainer {
  width: 100%;
  color: gray;
}

.contentContainer {
  padding: 0px 120px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.contentMasterContainer h2 {
  color: white;
}

.contentSpacing {
  height: 100px;
}

.contentMasterContainer .textContent {
  width: 50%;
  text-align: justify;
}

.contentMasterContainer .imgContainer {
  width: 50%;
  text-align: center;
}

.contentMasterContainer .imgContainer img {
  max-width: 400px;
}

@media screen and (max-width: 450px) {
  .contentContainer {
    padding: 0px 20px;
  }
  .contentMasterContainer .textContent {
    width: 100%;
  }
  .contentMasterContainer .imgContainer {
    width: 100%;
  }
  .contentContainer {
    flex-direction: column;
  }
  .contentMasterContainer .imgContainer img {
    max-width: 330px;
  }
  .flexReverse {
    flex-direction: column-reverse;
  }
}

/* Speakers */
.speakersMasterContainer {
  width: 100%;
  justify-content: center;
  display: flex;
  color: white;
  flex-direction: column;
  text-align: center;
}
.speakersMasterContainer h2 {
  font-size: 30px;
}

.speakersMasterContainer .speakersContainer {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.speakersMasterContainer .speakerContainer {
  margin: 20px 0px;
  width: 400px;
}

.speakersMasterContainer .speakerContainer h3 {
  margin: 10px;
}

.speakersMasterContainer .speakerContainer span {
  color: gray;
}

.speakersMasterContainer .speakerContainer img {
  width: 200px;
  border-radius: 50%;
}

/* Hackathon */
.hackathonMasterContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  color: rgb(196, 196, 196);
}

.hackathonMasterContainer .hackathonContainer {
  flex-direction: column;
  display: flex;
  background: linear-gradient(45deg, #631c64, #202377);
  border-radius: 30px;
  padding: 20px 30px 25px;
  text-align: center;
  justify-content: center;
  width: 80%;
  margin: 10px;
}

.hackathonMasterContainer .hackathonContainer .content {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.hackathonMasterContainer .hackathonContainer .imgContainer {
  width: 30%;
  display: grid;
  place-content: center;
}

.hackathonMasterContainer .hackathonContainer .imgContainer img {
  max-width: 250px;
}

.hackathonMasterContainer .hackathonContainer .hackathonContent {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: justify;
}

.hackathonMasterContainer .hackathonContainer h2 {
  color: white;
  font-size: 30px;
}

.hackathonMasterContainer .hackathonContainer .linkContainer {
  padding: 20px;
  margin-top: 20px;
}

.hackathonMasterContainer .hackathonContainer .linkContainer a {
  background-color: white;
  padding: 15px 20px;
  border-radius: 20px;
  transition: 0.5s;
  border: 1px solid white;
}

@media screen and (max-width: 450px) {
  .hackathonMasterContainer .hackathonContainer .content {
    flex-direction: column;
  }
  .hackathonMasterContainer .hackathonContainer .imgContainer {
    width: 100%;
  }

  .hackathonMasterContainer .hackathonContainer {
    padding: 20px;
  }
}

/* Gallery */
.galleryMasterContainer {
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.galleryMasterContainer h2 {
  font-size: 30px;
  /* margin-bottom: 20px;
  font-weight: 600; */
}

.galleryMasterContainer .gallery {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  max-width: 80%;
}

.galleryMasterContainer .gallery img {
  width: 350px;
  margin: 3px;
}

/* Sponsors */
.sponsorsMasterContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}

.sponsorsMasterContainer h2 {
  font-size: 30px;
}

.sponsorsMasterContainer .sponsorsContainer {
  width: 80%;
}

.sponsorsLogos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.sponsorsLogos img {
  max-width: 200px;
}

/* Footer */
footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: gray;
  text-align: center;
  margin-bottom: 10px;
}

footer a {
  color: gray;
}
