@font-face {
  font-family: 'Switzer';
  src: url("../fonts/Switzer-Variable.ttf") format("truetype");
}

@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}


body::-webkit-scrollbar {
  display: none; 
  overflow: hidden;
}

body{
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: none; 
  font-family: Switzer, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  font-weight:500;
  line-height: 1.25em;
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
  color:lightgrey;
  transition: .3s;
}

a:hover {
  color:inherit;
}

a[target="_blank"] {
    cursor: ne-resize;
}

::selection{
  background-color:lightgrey;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body {font-size: 1.5em;}
}

