*{
    padding: 0%;
    margin: 0%;
}

#marcontainer{
    position: absolute;
    top: -2%;
    left: 0%;
    display: flex;
    height: 250px;
    width: 100vw;
}
#marcontainer h1{
    font-size: 300px;
    white-space: nowrap;
    display: block;
    width: 100%;
    padding-left: 10%;
    animation: marquee 10s linear infinite;
    -webkit-text-stroke: rgb(255, 255, 255,0.1) 3px;
    color: transparent;
}


@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}