* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  scroll-behavior: smooth;
}
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  background-color: rgb(255, 255, 255);
  /* box-shadow: 2px 2px 10px black; */
  /* background-color: #b5eaff; */
}
.navbar-1 {
  width: 100%;
  padding: 0 20% 0 10%;
  /* border: 2px solid red; */
  display: flex;
  /* gap: 30%; */
  justify-content: space-evenly;
}

.logo {
  position: relative;
  width: 100px;
  height: 100px;
  background-image: url(logo-removebg-preview.png);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.navbar-1 ul {
  position: relative;
  width: 100%;
  list-style: none;
  text-decoration: none;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  justify-content: center;
  /* justify-content: space-evenly; */
  gap: 5%;
  /* gap: 60%; */
  /* justify-content: s; */
}
.nav-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-link ul li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 1.5rem;
}
.nav-link ul li a:hover {
  color: rgb(92, 81, 81);
  transform: scale(1.5);
}
#events {
  animation: blinking 0.5s linear infinite;
}
@keyframes blinking {
  to {
    color: blue;
  }
  from {
    color: black;
  }
}

#event {
  position: relative;
  /* margin-top: 200px; */
  margin-top: 90px;
  width: 100%;
  height: auto;
  /* border: 2px solid red; */
  padding: 2rem 2rem 0 0;
  text-align: center;
}

.form {
  background-color: rgb(30, 30, 130);
  width: 100%;
  height: 100%;
  padding: 2vw;
  color: white;
  position: relative;
  margin-top: 100px;
}

.join-us {
  font-size: 4vw;
  padding-bottom: 3vw;
}
.form-section {
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 3vw;
}
.form input {
  padding: 25px;
  margin: 5px;
  font-size: 20px;
  border: none;
  border-bottom: 2px solid black;
}
.form input:focus {
  outline: none;
}
.file {
  color: grey;
  font-size: 2vw;
}
.file input {
  border: none;
}
.form button {
  width: 7vw;
  background-color: blue;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  font-size: 1.2vw;
  border: 2px solid blue;
  cursor: pointer;
}
.form button:hover {
  background-color: white;
  color: black;
}

@media (max-width: 600px) {
  .join-us {
    font-size: 25px;
    padding: 3vw;
  }
  .file {
    padding-top: 10px;
    padding-left: 10px;
    font-size: 25px;
  }
  .form button {
    width: 100%;
    height: 60px;
    font-size: 25px;
  }
}

.footer {
  position: relative;
  width: 100%;
  background-color: #1e3a8a;
  color: white;
  padding: 20px 0;
  text-align: center;
  /* margin-top: 100px; */
}
.footerContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}
.footerSection {
  margin: 10px;
  width: 20%;
  flex-wrap: wrap;
}
.pastEvent {
  width: 100%;
  height: auto;
  margin-top: 2.5rem;
}
/* .footerSection p{} */

.footerSection h3 {
  margin-bottom: 10px;
}
.footerSection a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.footerBottom {
  margin-top: 20px;
  font-size: 14px;
}
.footerSection i {
  line-height: 40px;
  font-size: 2rem;
}

.loader {
  display: none;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border-top: 5px dotted white;
  animation: loader 1s linear infinite;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
