body, html {
    background-color: #191919;
}

.loading-text {
    font-family: 'Roboto', 'Helvetica', 'Arial', 'sans-serif';
    color: #b86022;
}

.loading-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.dancing-rectangles {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    width: 200px;
    height: 50px;
    margin-bottom: 20px;

}

.rectangle {
    width: 20px;
    height: 20px;
    background-color: #b86022;
    margin: 0 3px;
    animation: dance 0.8s ease-in-out infinite alternate;
}

.rectangle:nth-child(2) {
    animation-delay: 0.1s;
}

.rectangle:nth-child(3) {
    animation-delay: 0.2s;
}

.rectangle:nth-child(4) {
    animation-delay: 0.3s;
}

.rectangle:nth-child(5) {
    animation-delay: 0.4s;
}

.rectangle:nth-child(6) {
    animation-delay: 0.5s;
}

.rectangle:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes dance {
    0% {
        transform: scaleY(1);
    }
    100% {
        transform: scaleY(2);
    }
}

.flexMin {
    flex-basis: min-content;
}