body {
    font-family: Arial, sans-serif;
    background: linear-gradient(90deg, rgba(2, 96, 115, 1) 0%, rgba(44, 79, 143, 1) 50%, rgba(79, 232, 227, 1) 100%);
    padding: 20px;
    margin: 0;
}

* {
    user-select: none;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(79, 232, 227, 1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#21d4fd, #b721ff);
    border-radius: 100px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
    gap: 20px;
    justify-items: center;
}

.grid-item {
    width: 265px;
    height: 265px;
    background-color: #1c1c1c;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.grid-item:hover {
    transform: scale(1.03);
}

.grid-item a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    color: #ffffff;
}

.title {
    height: 65px;
    background-color: #1c1c1c;
    color: #ffffff;
    font-size: 1em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
}

.text-404 {
    text-align: center;
    color: #ffffff;
    margin-top: -6px;
}

.title-underline {
    margin-top: -16px;
}

.h2_back-404 {
    text-align: center;
}

.a_back-404 {
    color: #9a9a9a;
    text-decoration: none;
}
