/** GLOBAL SETTINGS */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;500;700&display=swap');

html {
	scroll-behavior: smooth;
	font-family: 'Raleway', sans-serif;
}

body {
	margin: 0px;
	width: 100%;
	height: auto;
    overflow-x: hidden;
}

p::selection, a::selection, input::selection, textarea::selection, button::selection {
	background-color: #d1d1d1;
}


/** CUSTOM SCROLLBAR */

:root {
    --animate-delay: 0.9s;
}

::-webkit-scrollbar {
    width: 0.5vw;
}
  
::-webkit-scrollbar-track {
    background: #EDEDED; 
}
   
::-webkit-scrollbar-thumb {
    background: #1b1b1b; 
}