body, html {
    background-color: #fff;
    color: black;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Loader Styles */
#loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #007bff; /* Blue color */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Rest of the styles remain the same */

/* width */
::-webkit-scrollbar {
    width: 10px;
    transition: 1s ease-in-out;
}
  
/* Track */
::-webkit-scrollbar-track {
    background: none;
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: #aee1ff;
    width: 10px;
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b6aeff;
    transition: background-color 0.5s ease-in-out; /* Corrected transition property */
}

.btn {
    display: inline-block;
    border: none;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, background-color 1s ease-in-out, border-radius 0.5s ease-in-out; /* Add transition for border-radius */
    cursor: pointer;
}

.btn:hover {
    background-color: #1e00ca;
    transform: scale(1.2);
    border-radius: 100px; /* Change border-radius on hover */
    cursor: pointer;
}

.namehtmls {
    font-size: 350px;
    font-family: 'Roboto', sans-serif; /* Updated font family to Roboto */
    font-size: 50px;
    color: black;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 25px;
    text-shadow: 
        0 0 10px rgba(255, 0, 0, 0.5), /* Red shadow with slight transparency */
        0 0 20px rgba(255, 255, 0, 0.5), /* Yellow shadow with slight transparency */
        0 0 30px rgba(0, 255, 0, 0.5), /* Green shadow with slight transparency */
        0 0 40px rgba(0, 255, 255, 0.5), /* Cyan shadow with slight transparency */
        0 0 50px rgba(0, 0, 255, 0.5), /* Blue shadow with slight transparency */
         0 0 60px rgba(255, 0, 255, 0.5); /* Magenta shadow with slight transparency */
}