body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.resource-item {
    width: 200px;
    margin: 10px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s;
}

.resource-item:hover {
    transform: scale(1.05);
}

.resource-thumbnail {
    width: 100%;
    height: auto;
}

.resource-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.resource-icon {
    width: 50px;
    height: 50px;
}

.search-container {
    margin-bottom: 20px;
    text-align: center;
}

.search-input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.sort-options {
    margin-bottom: 20px;
    text-align: center;
}

.sort-select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}