@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Nunito", serif;
    background-color: #0d0d0d; 
    position: relative;
    color: #fff;
    text-align: center;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#uv-form {
    margin-top: 20px;
}

.form__input {
    padding: 20px;
    font-family: "Nunito", serif;
    width: 30vw;
    background-color: #141414;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    color: #fff;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    z-index: 99999;
}

.left-nav a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.left-nav img {
    border-radius: 100px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.left-nav h3 {
    color: white;
    margin: 0;
}

.right-nav {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.right-nav a {
    color: white;
    margin-right: 25px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.2s ease-in-out;
}

.right-nav a:hover {
    color: #ccc;
}

#loading-screen {
    font-family: "Nunito", serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #0d0d0d;
    z-index: 9999;
    color: white;
}

.dots {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

#loading-screen p {
    font-size: 1rem;
    opacity: 0.8;
}

.container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px;
    width: 100%;
    max-width: 1000px; 
    justify-items: center;
    padding: 10px;
    margin: 0 auto;
}

.box {
    font-family: "Nunito", serif;
    width: 150px;
    text-align: center;
    background: #141414;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    transition: 0.2s ease;
}

.box:hover {
    scale:1.1
}

.box img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.box p {
    font-family: "Nunito", serif;
    margin: 10px 0 0;
    font-size: 14px;
}

.search-bar {
    margin: 10px 0;
}

.search-bar input {
    font-family: "Nunito", serif;
    width: 30vw;
    padding: 10px;
    font-size: 16px;
    border: none;
    color: #fff;
    background: #141414;
    border-radius: 50px;
}

.my-container {
    display: flex;
    flex-direction: column; 
    gap: 30px; 
    width: 70vw; 
    margin: 0 auto; 
}

.my-box {
    font-family: "Nunito", serif;
    background-color: #141414; 
    padding: 20px; 
    color: white; 
    text-align: center; 
    border: none;
    border-radius: 50px; 
}

.sigma, .discord {
    font-family: "Nunito", serif;
    padding: 20px 25px;
    background-color: #141414;
    color: white;
    border-radius: 15px;
    margin: 4px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: none;
}

.sigma:hover {
    background: #555;
}

.discord:hover {
    background: #5865F2;
    color: #000;
}

::-webkit-scrollbar {
    width: 0px;
}