
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inconsolata', monospace;
    font-family: 'Ubuntu', sans-serif;
    color: white;
}

.background-image {
    background-image: url('/images/bg-image.jpg'); /* Replace with your image path */
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    color: white; /* Adjust text color as needed */
    /* text-align: center; */
}

h1 {
    font-size: 2em;
}

.card {
    margin-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px;
   /*margin-bottom: 20px;*/
    background-color: rgba(0, 0, 0, 0.8);
}

