* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  background-color: black;
  color: white;
}
html {
  scroll-behavior: smooth;
}
.heading {
  text-align: center;
  background: #c06cb2;
  background: linear-gradient(
    rgb(88, 100, 156) 0%,
    rgba(119, 87, 208, 1) 28%,
    rgba(197, 77, 149, 1) 60%,
    rgba(212, 75, 137, 1) 79%,
    rgb(97, 5, 60) 100%
  );
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
.intro {
  text-align: center;
  margin: 10px;
  color: darkgray;
  font-size: 15px;
}
.li {
  display: inline;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(130, 218, 218, 0.805);
  height: 40px;
  padding: 10px;
  width: 100%;
  gap: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.listitem {
  color: black;
  text-decoration: none;
  font-weight: 550;
  padding: 0px 10px;
  font-size: 20px;
}
.bgvideo {
  width: 100%;
}
section,
footer {
  background-color: rgba(36, 36, 123, 0.677);
  border: 2px solid rgb(56, 183, 50);
  margin: 20px auto;
  width: 90%;
  border-radius: 20px;
  padding: 20px 20px;
  box-shadow: 3px 6px 20px green;
  transition: all 0.5s ease-in-out;
}
section:hover {
  transform: scale(1.05);
}
footer:hover {
  transform: scale(1.05);
}
.title {
  background: #2a7b9b;
  background: #22c1c3;
  background: linear-gradient(
    0deg,
    rgba(34, 193, 195, 1) 0%,
    rgba(87, 192, 159, 1) 24%,
    rgba(202, 189, 80, 1) 77%,
    rgba(222, 188, 66, 1) 86%,
    rgba(253, 187, 45, 1) 100%
  );
  background-clip: text;
  color: transparent;
  font-size: 20px;
  margin-bottom: 10px;
}
.gitbutton {
  text-decoration: none;
  color: rgb(209, 24, 200);
  font-weight: 550;
}
.button {
  border-radius: 13px;
  box-shadow: 1px 2px 3px rgb(159, 209, 236);
  padding: 5px 7px;
}
p {
  line-height: 1.4;
}
.navlist {
  display: flex; /* make list horizontal */
  gap: 100px; /* spacing between items */
  padding: 0;
  margin: 0;
}
