body {
    background: radial-gradient(#000000,#464646);
}

.header h1 {
    text-align: center;
    font-family: "Seymour One";
    font-size: 60px;
}

.header a {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
    color: #000000;
    text-decoration: none;
}

.header img {
    width: 50px; 
    height: auto; 
    margin-left: 2%;
}



.search {
    width: 280.5px;
    min-width: 280.5px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 8px 0;
    margin-bottom: 20px;
}

.search input {
    background: transparent;
    flex: 1;
    border: none;
    outline: none;
    padding: 8px;
    font-size: 15px;
    color: #000000;
    border-radius: 30px;
    margin-right: 10px;
}

.search input::placeholder {
    color: rgb(255, 255, 255);
    opacity: 1;
}

.search input:-webkit-autofill {
    -webkit-background-clip: text;
    transition: background-color 5000s ease-in-out 0s;
}

.search input:-webkit-autofill,
.search input:-webkit-autofill:focus {
    box-shadow: 0 0 0px 1000px transparent inset;
}

.search button {
    border: none;
    border-radius: 70px;
    width: auto;
    height: 40px;
    background: transparent;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
    padding: 8px 15px;
    margin-left: -15px;
}

.categories {
    white-space: nowrap;
    overflow-x: visible;
    overflow-y: hidden;
    height: 80px;
    padding: 0;
    background: none;
    border: 2px solid rgba(0, 0, 0, 0);
    margin: 0 4px;
}

.categories button {
    border: none;
    border-radius: 15px;
    background: transparent;
    padding: 20px;
    width: 200px;
    height: 20px;
    color: white;
    display: inline-block;
    vertical-align: middle;
    transition: text-shadow 0.3s ease;
}

.categories button.selected,
.categories button.all.selected {
    text-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
}

#AllButt {
    text-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
}

::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: radial-gradient(rgb(255, 56, 56), rgb(255, 152, 56));
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: radial-gradient(rgb(180, 25, 25), rgb(180, 103, 31));
    border-radius: 50px;
    border: 10px;
}

.commandtit {
    text-align: center;
    font-size: xx-large;
    -webkit-text-stroke-width: .75px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
}

.container {
    text-align: center;
}

.container #commandsList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.container .commands {
    flex: 0 0 calc(33.33% - 20px);
    border-radius: 25px;
    background: #222222;
    padding: 20px;
    box-sizing: border-box;
    color: white;
    text-align: left;
    margin-bottom: 20px;
    margin-right: 10px;
}

.container .commands h1,
.container .commands h2 {
    text-decoration: underline;
}

.footer {
    background-color: #222222;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

@media (max-width: 1120px) {
    .search {
        width: 23.1%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 60px;
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    .container .commands {
        flex: 0 0 calc(100% - 20px); /* Adjusting width for full width on smaller screens */
        margin-right: 0; /* Resetting margin-right */
    }
}

@media (max-width: 800px) {
    .Commands {
        width: 100%;
        margin-right: 0;
    }
    .container .commands {
        flex: 0 0 calc(100% - 20px); /* Adjusting width for full width on smaller screens */
        margin-right: 0; /* Resetting margin-right */
    }
}