/* Word Cloud Styling */
.word-cloud-container {
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 20px);
    top: 10px;
    left: 20px;
    background-color: #1e4a86;
    overflow: hidden;
    z-index: 0;
    font-family: 'Nunito', sans-serif;
    pointer-events: none;
    border-radius: 12px;
}

.word-cloud-word {
    position: absolute;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.word-cloud-word.visible {
    opacity: 1;
}

/* Five different sizes */
.word-size-xs {
    font-size: 12px;
}

.word-size-small {
    font-size: 16px;
}

.word-size-medium {
    font-size: 24px;
}

.word-size-large {
    font-size: 32px;
}

.word-size-xl {
    font-size: 40px;
}

/* Font weights */
.word-weight-200 {
    font-weight: 200;
}

.word-weight-300 {
    font-weight: 300;
}

.word-weight-400 {
    font-weight: 400;
}

.word-weight-500 {
    font-weight: 500;
}

.word-weight-600 {
    font-weight: 600;
}

.word-weight-700 {
    font-weight: 700;
}

.word-weight-800 {
    font-weight: 800;
}

/* Colors */
.word-color-white {
    color: white;
}

.word-color-grey {
    color: #d0d0d0;
}

.word-color-yellow {
    color: #ffecb3;
}

@media (max-width: 440px) {
    .word-size-xl {
        font-size: 32px;
    }
    
    .word-size-large {
        font-size: 26px;
    }
    
    .word-size-medium {
        font-size: 20px;
    }
    
    .word-size-small {
        font-size: 14px;
    }
    
    .word-size-xs {
        font-size: 10px;
    }
}
