@font-face {
    font-family: "Roboto Bold";
    src: url("./fonts/Roboto-Bold.ttf");
}

@font-face {
    font-family: "Roboto ";
    src: url("./fonts/Roboto-Black.ttf  ");
}

@font-face {
    font-family: "Roboto Regular";
    src: url("./fonts/Roboto-Regular.ttf");
}


html{
    scroll-behavior: smooth;
}
button {
    font-size: 1.4em;
    padding: 0.6em 0.8em;
    border-radius: 0.5em;
    border: none;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    box-shadow: 2px 2px 3px #000000b4;
}

.btn-container {
    position: relative;
    padding: 3px;
    background: linear-gradient(90deg, #03a9f4, #f441a5);
    border-radius: 0.9em;
    transition: all 0.4s ease;
}

.btn-container::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 0.9em;
    z-index: -10;
    filter: blur(0);
    transition: filter 0.4s ease;
}

.btn-container:hover::before {
    background: linear-gradient(90deg, #03a9f4, #f441a5);
    filter: blur(1.2em);
}

.btn-container:active::before {
    filter: blur(0.2em);
}                                                            
.sar { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

}


    @media only screen and (max-width:768px) {

        .nav-items {
            display: none;
        }


    }

 .element,#element{

    color:rgb(46, 36, 232);
    font-style: bold
    ;

 }
