@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    background-color: #FCFCFC;
    width: 100vw;
    height: 100vh;
}

#ldev_ {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
}

#ldev_Logo {
    background-image: url(../Img/ldev_Logo.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 232px; 
    height: 42px;
    z-index: 1;
}

.Star {
    background: #282828;
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0px 0px 45px 5px rgba(45, 45, 45, .15);
    -moz-box-shadow: 0px 0px 45px 5px rgba(45, 45, 45, .15);
    -webkit-box-shadow: 0px 0px 45px 5px rgba(45, 45, 45, .15);
    animation: Stars var(--dur) linear var(--delay) infinite alternate;
}

.Stars {
    inset: 0;
    position: absolute;
    pointer-events: none;
}

@keyframes Stars {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}


@media (max-width: 800px) {

}