.projects {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-wrap: wrap;
}
.project {
  width: 450px;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);

  height: 600px;
  margin: 20px 0px;
  padding: 0px 30px;
  background: rgba(7, 11, 46, 0.3);
  border-radius: 1rem;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3),
    0px 0px 40px rgba(0, 0, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;

  transition: all 0.3s ease;
}
.project h2 {
  font-size: 72px;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.project a {
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
  padding: 20px 50px;
  font-weight: bold;
  font-size: 24px;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.project a::after,
.project a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  top: 50%;
  left: 50%;
  border-radius: 1rem;
  filter: blur(1.5rem);
  transform: translate(-50%, -50%);
  padding: 10px;
  z-index: -1;
}
.project:hover {
  border: 2px solid rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 1),
    0px 0px 40px rgba(0, 0, 255, 0.3);
}
