
body, html{
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Saira Condensed', sans-serif; /* aplicăm fontul */
}
#teaserVideo{
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover; /* face video-ul responsive pe toate dimensiunile */
    z-index: -1; /* trimite video în spate */
}
.content{
    position: relative;
    z-index: 1; /* peste video */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.80) 100%);
}
h1 {
    font-size: 84px;
    margin: 0 auto 32px auto;
    max-width: 100vw;
    text-transform: uppercase;
    font-weight: 400;
    padding-left: 16px;
    padding-right: 16px;
    color: #FFF;
    text-align: center;
    line-height: normal;
    }

#countdown {
    display: flex;
    gap: 24px;
    }

.time-box {
    text-align: center;
    width: 50px;
    }

.time-box span {
    display: block;
    }

.number {
    font-size: 2.5rem;
    font-weight: bold;
    }

.label {
    font-size: 1rem;
    opacity: 0.9;
    }

.licenta{
    position: fixed;
    bottom: 20px;
    height: 32px;
}

@media (max-width: 768px) {
    h1 { font-size: 50px; }
    #countdown { gap: 12px; }
    .licenta{ height: 18px; }
    }

/*@media (max-width: 480px) {*/
/*    h1 { font-size: 3rem; }*/

/*    }*/

