@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Containerul pentru imaginea de fundal */
.background-container {
    position: absolute; /* Poziționat absolut față de body */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bk2.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 64, 66, 0.7);
    z-index: 0;
}

.content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;

    text-align: center;
    color: white;
}

.content-box img {
    display: block;
    width: 300px;
    height: auto;
    margin: 0 auto 15px auto;
}

.content-box p {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.65em;
    letter-spacing: 2px;
}