.background-container {
  background-image: url(assets/Background-Img.jpg);
  width: 100vx;
  height: 100vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card {
  margin: 20px;
  padding: 15px;
  max-width: 500px;
  font-size: 20px;
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  color: #1a1a1a;
  border: 4px ridge rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.glass-card:hover {
  box-shadow: 5px 5px 15px 1px #000000;
}
