@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap');

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tags-cloud {
    cursor: grab;
    position: relative;
    z-index: 99;
    height: 50vh;
    width: 100%;
    list-style: none;
    color: var(--canvas-color);
    overflow: hidden;
    margin: 0;
}

.tags-cloud.-loaded {
    animation: fadeIn 1s ease-out forwards;
}

.tags-cloud > .tag {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 5vmin;
    font-weight: bold;
    text-transform: lowercase;
    transition: transform .5s linear, opacity .5s linear;
    font-family: 'Oswald', serif;
}

.tags-cloud > .tag > .wrap {
    display: inline-block;
    transform: translateX(-50%) translateY(-50%);
}
