body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url('background.jpg'); /* Replace with the path to your image */
    background-size: cover; /* Makes the image cover the whole background */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: #fff; /* Sets text color to white */
    /*text-align: center; */
    /*padding: 50px;*/
}
header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}
main {
    padding: 2rem;
}
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    bottom: 0;
    width: 100%;
}
.center {
    text-align: center !important;
}
.close-link {
    text-decoration: none;
    font-size: 20px;
    color: black;
  }
  
  .close-icon {
    font-weight: bold;
    font-size: 24px;
    color: white;  /* Change color as needed */
  }
  