@import url('./nav.css');
@import url('./home.css');
@import url('./about-me/about.css');
@import url('./about-me/more-about-me.css');
@import url('./portfolio.css');
@import url('./testimonial.css');
@import url('./form/contact.css');
@import url('./footer.css');
@import url('./btn-up.css');
@import url('./breakpoint/tablet.css');
@import url('./breakpoint/desktop.css');

html {
	scroll-behavior: smooth;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	border: none;
	outline: none;
	font-family: 'Poppins', sans-serif;
	list-style: none;
	/* background-color: rgb(30,41,59); */
}

body {
	overflow-x: hidden;
	/* position: relative; */
}

/* style Scroll */

::-webkit-scrollbar {
	width: 8px; /* Tamaño del scroll en vertical */
	height: 1px; /* Tamaño del scroll en horizontal */
}
::-webkit-scrollbar-thumb {
	background: linear-gradient(to top, #2e657ccf, #05b4ffce);
	border-radius: 1em;
}

::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 1em;
}