@media (max-width: 960px) {
  .container {
    width: 700px;
  }
}

@media (max-width: 720px) {
  .container {
    width: 500px;
  }
}

@media (max-width: 540px) {
  .container {
    width: 300px;

  }
}

body {
  font-family: "Space Mono";
  background-color: #A1FFFF;
  color: #fdfaff;
  text-align: center;
  padding: 40px;
}

#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

h1, h2, h3 {
  font-family: "Space Grotesk";
  color: #A1FFFF;
}

li {
  display: inline;
}

ul {
  padding: 0px;
}

.card {
  background-color: #001320;
  padding: 70px;
  width: 50%;
  margin: 50px auto;
  border-radius: 5px;
  border: 1px solid #7AFFFF ;
  box-shadow: 0 0 16px rgba(0,0,0,0.1);
  border-radius: 3%;
}

#profile-pic {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

a {
  text-decoration: none;
  color: #24F5E5;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s ease;
}

a:hover {
  color: #E0FBFA;
}

footer {
  display: block;
  background-color: transparent;
}
