* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1e1e2f;
  height: auto;
  font-family: "Courier New", Courier, monospace;
  height: 120vh;
}

.navbar {
  background-color: #171717;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-around;
}

.links {
  list-style: none;
  display: flex;
  gap: 30px;
  animation: popIn 3s ease-in-out;
}
li a {
  color: white;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}

li a:hover {
  color: red;
}

@media only screen and (max-width: 600px) {
  .navbar {
    width: 100%;
    padding: 5px 8px;
    justify-content: space-between;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
