@font-face {
    font-family: bodoni;
    src: url(bodoni.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow: hidden;
    font-family: bodoni;
}

.fullscreen-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); /* Black overlay with 25% opacity */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay-text {
    color: white;
    font-size: 3em;
    text-align: center;
    transform: scale(-1, -1);
    margin-bottom: 30px;
    line-height: 0.1;
}
.overlay-text-alt {
    color: white;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 30px;
}

.tracker-counter {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 25px 35px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
}

.counter-value {
    color: white;
    font-size: 3em;
    font-weight: bold;
    display: block;
    text-transform: lowercase;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5em;
    text-transform: lowercase;
    margin-bottom: 20px;
}

.storage-value {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8em;
    font-weight: normal;
}

@media (max-width: 768px) {
    .overlay-text {
        font-size: 2em;
    }

    .tracker-counter {
        min-width: 300px;
        padding: 30px 40px;
    }

    .counter-value {
        font-size: 4em;
    }

    .counter-label {
        font-size: 1.2em;
    }

    .storage-value {
        font-size: 1.3em;
    }
}
