@import url("https://fonts.googleapis.com/css2?family=Manrope&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Manrope", sans-serif;
}

/*NAV BAR START*/
nav {
    display: flex;
    align-items: center;
    height: 10vh;
    width: 100%;
    position: absolute;
    font-size: 25px;
    justify-content: space-around;
    padding: 1.5rem 3.5rem;
    color: white;
    z-index: 1;
  }
  
  nav ul {
    display: flex;
    justify-content: space-around;
    width: 43rem;
  }
  
  nav ul li {
    display: inline-block;
    font-weight: bold;
  }

  nav ul a {
    text-decoration: none;
    color: white;
  }

  nav li a:hover {
    color: #B20ED3;
    transition: 0.4s ease;
  }
/*NAV BAR END*/

/*EVENTS PAGE START*/
.events-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: white;
}
  
.column {
  float: left;
  padding: 10px;
}

.left {
  width: 25%;
  background-color: #242325;
  height: 100%;
}

/*SEARCH FIELD AREA*/
.search-field {
  padding: 40px;
  margin-top: 45px;
}

#site-search {
  background: linear-gradient(112.12deg, rgba(164, 13, 194, 0.9) 49.71%, rgba(114, 54, 241, 0.79) 85%);
   mix-blend-mode: normal;
   border-radius: 15px;
   text-decoration-color: white;
   align-content: center;
   font-size: 20px;
   position:relative;
   border: 0px;
}

.site-search :hover, .site-search:focus {
   border: 1.5px solid #009688;
   background-color: white;
 }

 input::placeholder {
   color: rgb(255, 255, 255);
   text-indent: 20px;
   font-size: 15px;
   opacity: 9;
 }
 

/*SEARCH FIELD END*/

.right {
  width: 75%;
  margin: 50px;
}

/* Clear floats after the columns */
.events-page:after {
  content: "";
  display: table;
  clear: both;
}

iframe {
  padding: 10px;
}
/*EVENTS PAGE END*/

div.scroll {
  margin: 4px, 4px;
  padding: 20px;
  background-color: transparent;
  width: 340px;
  height: 530px;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: justify;
}

.project-pic {
  width: 100%;
  height: 200px;
}

.project-container {
  text-align: center;
  width: 100%;
  height: 300px;
}

.project-title {
  margin-bottom: 5rem;
  color: black;
}



.project-card {
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);

  margin-top: 20px;
  margin-bottom: 20px;
  transition: all 0.3s;
}