* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: black;
  color: white;
}
.title {
  text-align: center;
  background: linear-gradient(
    to right,
    green 0%,
    yellow 30%,
    red 40%,
    blue 60%
  );
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.intropara {
  text-align: center;
  font-weight: 200;
  font-size: 15px;
  color: darkgray;
  margin-top: 10px;
}
.navlist1 {
  display: inline;
}
nav {
  background-color: aqua;
  height: 40px;
  padding: 10px;
  width: 680px;
  border-radius: 20px;
  border: 2px ridge blue;
  margin: 10px auto;
}
.listitem {
  color: black;
  text-decoration: none;
  font-weight: 500;
  padding: 0px 10px;
}
.bgvideo {
  width: 100%;
}
section,
footer {
  background-color: rgb(1, 1, 42);
  border: 2px solid aqua;
  border-radius: 20px;
  margin: 20px auto;
  width: 90%;
  padding: 20px 50px;
  box-shadow: 3px 5px 20px rgb(59, 130, 151);
}
.sectiontitle {
  background: linear-gradient(
    to right,
    green 0%,
    yellow 10%,
    red 30%,
    blue 40%
  );
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}
.intern {
  margin-bottom: 10px;
}
.project {
  margin-bottom: 10px;
}
.internlist {
  margin-left: 15px;
}
.project1 {
  margin-left: 15px;
}
.github {
  margin-top: 10px;
}
button {
  border: 2px solid aqua;
  border-radius: 20px;
  background-color: aqua;
}
.btn {
  padding: 5px 10px;
  width: 10px;
  color: black;
  text-decoration: none;
}
