@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
  color: #1C1C1C;
  font-family: "Roboto", sans-serif;
}


img {
  max-width: 100%;
  height: auto;
}

.container{
  width: 100%;
  margin: 0 auto;
  max-width: 100%;  
  padding: 0 40px ;
}

a{
  text-decoration: none;
}

:root{
  --primary-color: #0C1559;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset; 
    -webkit-text-fill-color: #000; 
}


::-webkit-scrollbar {
  height: 9px;
}

::-webkit-scrollbar-track {
  background: #eaeaea; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #969696; 
  border-radius: 10px; 
}

::-webkit-scrollbar-thumb:hover {
  background-color: #969696;
}

::-webkit-scrollbar-button {
  background-color: transparent; 
}

@media screen and (max-width: 700px){
  .container{
    padding: 0 20px;
  }
}
