* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}
body::before {
    background-color: rgba(255, 255, 255, 0.5);
}

.card {
    background-color: white; /* Opaque background for the card */
}
