.worlds-list-section {
    background: #5E5651;
    padding: 30px;
    color: #fff;
}

.worlds-list-content {
    border: 5px solid #fff;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
    font-size: 16px;
}

.worlds-list-controls {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 5px solid #fff;
}

.worlds-list-controls input {
    font-size: 24px;
    width: 100%;
}

.world-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-gap: 10px;
}

.world {
    border-radius: 5px;
    background: #fff;
    color: #000;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, .2);
    overflow: hidden;
}

.world-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.world-info {
    padding: 10px;
}

.world-name {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
}

.world-file {
    font-size: 14px;
    font-style: italic;
    color: #3b3b3b;
    word-break: break-all;
}

@media (max-width: 750px) {
    .world-list {
        grid-template-columns: 1fr;
    }
}