* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  background-color: black;
  z-index: 1;
}

.nav-items {
  display: inline-block;
  padding: 10px 15px;
}
.nav-links {
  text-decoration: none;
  color: whitesmoke;
}
.nav-btn {
  border: 1px solid black;
  padding: 15px;
  margin-right: 10px;
  text-decoration: none;
  color: gray;
  background-color: aqua;
  border-radius: 10px;
}
.web-link{
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: black;
}
.web-link > p {

  text-align: center;
  color: #fff;
  font-size: 2.5rem;
}
.logos {
  display: flex;
  justify-content: center;
  background-color: black;
}
.cool > p {
  padding-top: 15px;
  padding-right: 70px;
  font-size: 2rem;
  color: white;
  font-weight: 600;
  background-color: black;
  text-align: center;
}
.logos > img {
  margin-top: 20px;
  width: 100px;
}
.arrow1{
  transform: rotate(30deg);
}
.arrow2{
  transform: rotate(-90deg);
  width: 80px;
}
body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
/* Start of Hero Section */
.Hero {
  background-color: #fff;
  height: 100vh;
  position: relative;
  width: 100%;
}
.video-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.video-container iframe {
  height: 56.25vw;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.text {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1;
}
/* Start of SideVid */
.SideVid {
  width: 100%;
}
.hm-vid {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5%;
  position: relative;
  overflow: hidden;
}
.vid-intro {
  object-fit: cover;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;

}
.vid-intro > source {
  display: grid;
  justify-content: center;
}
/* Start of Introduction */
.Introduction {
  width: 100%;
}
.main-contents {
  padding: 30px;
}
.dates {
  padding-bottom: 20px;
}
.intro > h1 {
  color: #534d67;
  font-size: 2.5rem;
  padding-bottom: 20px;
}
.desc > p {
  text-align: justify;
}
.phase1 > h4 {
  padding-bottom: 10px;
}
.information {
  display: grid;
  place-content: center;
  background-color: #aed9da;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
  width: 100%;
}
.information > p,
h3 {
  text-align: center;
}

.fa-info {
  display: grid;
  place-items: center;
}

.table-top {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.arrow {
  transform: rotate(280deg);
}
.arrow > img {
  margin-left: 30px;
}
.mySlides {
  width: 100%;
  animation: fadeInOut 5s linear 1 forwards;
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Media Query */
@media (max-aspect-ratio: 16 / 9) {
  .video-container iframe {
    height: 100vh;
    width: 177.7777777778vh;
  }
}

@media (max-width: 600px) {
  .intro > h1 {
    text-align: center;
    font-size: 1.5rem;
  }
}
