html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #333;
    width: 100%;
    height: 100%;
}

.wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100vh - 50px);
    height: calc(100% - 50px);
    transform: translate(-50%, -50%);
}

.background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("./assets/background.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("./assets/text.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
}

.marquee {
    position: absolute;
    left: calc(42 * calc(100vh - 50px) / 1500);
    top: calc(792 * calc(100vh - 50px) / 1500);
    width: calc(553 * calc(100vh - 50px) / 1500 );
    height: calc(112 * calc(100vh - 50px) / 1500 );
    overflow: hidden;
    z-index: 10;
}

.marquee-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("./assets//marquee-text.png");
    background-size: calc(50 * 14.34 * calc(100vh - 50px) / 1500 ) calc(50 * calc(100vh - 50px) / 1500 );
    background-position: 0 center;
    background-repeat: repeat-x;
    animation: marquee 15s linear infinite forwards;
}

@keyframes marquee {
    0% {
        background-position: 0 center;
    }

    100% {
        background-position: calc(-50 * 14.34 * calc(100vh - 50px) / 1500) center;
    }
}

.bubbles {
    position: absolute;
    width: 94.5%;
    height: 94.5%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 5;
}

