@font-face {
    font-family: 'light';
    src:  url(../font/Montserrat-Light.ttf) ;
    font-display: swap;
}
*{
    margin: 0px;
    padding: 0px;
    font-family: 'light' !important;
}
body{
    background-color: #f8f8f8;
    overflow-x: hidden;
}
html{
    scroll-behavior: smooth;
}
button{
    background: unset;
    border: unset;  
    cursor: pointer;
}
main{
    overflow: hidden;
}
input , textarea {
    border: none;
    outline: none;
    resize: none;
}
input:focus{
    outline: none;
}
button:focus{
    outline: none;
}
ul , li{
    list-style-type: none;
}
a:hover{
    text-decoration: none;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
  }

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #f3bb30;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #e0b137;
}