body {
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    background-image: url('background.jpg'); /* Adăugați numele imaginii de fundal aici */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(128, 128, 128, 0.5); /* Gri semi-transparent */
    z-index: -1;
}

.container {
    text-align: center;
    max-width: 600px;
    color: #fff;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}
