body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 95vh;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

h1 {
    font-size: 3em;
    margin: 0;
}

p {
    font-size: 1.5em;
}

a {
    color: #FFD700; /* Gold color for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, p {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    padding: 10px;
    border-radius: 5px;
}
