body {
    margin: 0;
    background-color: #ffffff;
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
    cursor: default;
    position: relative;
}

::-webkit-scrollbar {
    display: none;
}

.poppins {
    font-family: "Poppins", sans-serif;
}

/* Loading Spinner */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-container {
    height: 60%;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.spinner-container4 {
    height: 90%;
    aspect-ratio: 1/1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.spinner {
    border: 2px solid rgba(252, 252, 252, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
    box-sizing: border-box;
    pointer-events: none;
}

.spinner2 {
    border: 2px solid #e635e6;
    border-top: 2px solid #6c79df;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
    box-sizing: border-box;
    pointer-events: none;
}

.spinner4 {
    border: 2px solid #9e1ad6;
    border-top: 2px solid #3b0752;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
    box-sizing: border-box;
    pointer-events: none;
}

/* Hover */

.container-input button:hover {
    background-color: #7684ec;
}

.container-input button:active {
    background-color: #6470ce;
}

.download-button:hover,
.stream-button:hover {
    filter: brightness(95%);
}

footer {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px); /* স্ক্রিন সাইজ থেকে দুই পাশে 20px গ্যাপ রাখবে */
    max-width: 1200px;  
    padding: 10px 20px;  
    box-sizing: border-box;  
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    color: black;
    border-radius: 100px;
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(10, 74, 64, 0.2); /* Box-shadow ঠিক করা হয়েছে */
    background: white; /* ব্যাকগ্রাউন্ড যোগ করা যাতে কনটেন্ট পরিষ্কার থাকে */
}
