@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body,html {
    padding: 0;
    scroll-behavior: smooth;
    margin: auto;
    /*max-width: 1920px;*/
    background-color: rgb(255, 255, 255);
    font-family: 'Inter', sans-serif;
    overscroll-behavior: none;
    position: relative;
  }
.slide{
    position: relative;
    animation: slide-in 0.5s ease-out;
  }
  @keyframes slide-in {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
a{
    cursor: pointer !important;
}

@media only screen and (min-width: 4000px) {
    body,html {
        max-width: 1920px;
    }
}

