body {
    background-color: #000;
    background-image: url(./bgnew.png);
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    font-family: Rubik, sans-serif;
    font-weight: 400;
    color: #ccc
}

.subiverse-landing-root {
    width: 100%;
    height: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center
}

.subiverse-logo-area {
    margin-bottom: 100px;
    max-width: 500px;
    user-select: none;
    padding: 0px 30px;
}

.subiverse-logo {
    width: 100%;
    height: auto;
    object-fit: cover
}

.title-text {
    text-align: center;
    font-size: 17pt;
    user-select: none;
}

.item-floaters {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
    opacity: .3
}

.item-floaters .item-cont {
    width: 64px;
    height: 64px;
    position: absolute;
    left: -96px;
    top: -64px;
    animation: float 120s linear infinite
}

.item-floaters .item-cont .item {
    width: 64px;
    height: 64px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.item-floaters .item-cont .item.grass {
    background-image: url(./landing_assets/item_grass.png)
}

.item-floaters .item-cont .item.cone {
    background-image: url(./landing_assets/item_cone.png)
}

.socials-cont {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: fixed;
    bottom: 50px;
}
.socials-cont .social-link {
    height: auto;
    width: 45px;
    filter: grayscale(1) brightness(5);
    margin: 0px 10px;
    margin-bottom: -3px;
    transition: filter 0.15s ease-out, transform 0.25s ease;
}
.socials-cont .social-link:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.2);
}
@keyframes float {
    from {
        left: -96px;
        transform: rotate(-30deg)
    }

    to {
        left: 100%;
        transform: rotate(30deg)
    }
}
.legal-notice {
    position: absolute;
    left: 50%;
    bottom: 10px;
    margin-left: -200px;
    width: 400px;
    text-align: center;
    font-size: 9pt;
}
