* {
  margin: 0; padding: 0;
  box-sizing: border-box;
  outline: none; border: none;
  text-decoration: none;
  transition: 0.3s linear;
}

body {
  background-image: url(https://512pixels.net/downloads/macos-wallpapers-6k/14-Sonoma-Light.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, Helvetica, Arial, sans-serif;
}

.content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.container {
  width: 500px;
  height: auto;
  display: grid;
  gap: 15px;
}

.card2, .card4 {
  padding: 15px;
  color: white;
  border-radius: 17px;
  border: 1px solid rgba(256, 256, 256, 0.3);
  background-color: rgba(256, 256, 256, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.card1 {
  width: 100%;
  margin-bottom: 15px;
  filter: brightness(100);
}

.card3 {
  width: 100%;
  border-radius: 17px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

a {
  width: 100%;
}

.card4 {
  font-weight: bold;
  text-align: center;
}

.card4:hover {
  background-color: rgba(256, 256, 256, 0.5);
  color: black;
  cursor: pointer;
}

.card2 {
  text-align: justify;
}