@import 'components/header.css';
@import 'components/footer.css';

*{
	margin:0;
	padding:0;
}

body{
	color:var(--color-main);
	font-family: arial, sans-serif;
}

html {
	font-size: 12px;
}


::-webkit-scrollbar, ::-webkit-scrollbar-thumb {
    width: 0px;
    height:0px;
    background-color: transparent;
}

*::selection {

}

img::selection {
  background-color: transparent;
}

:root{
	--color-main:black;
	--font-size-normal:1rem;
	--font-size-big:1.5rem;
}

/*TYPOGRAPHIE ------------------------*/
/*------------------------------------*/

@font-face { 
    font-family: 'HelveticaNeue';
    src: url('../fontes/HelveticaNeue.woff') format('woff');
}


/*MAIN -------------------------------*/
/*------------------------------------*/


section{
	min-height: 100vh;
	height: 100vh;
	width: 100%;
	display: flex;
}

main{
	width: 50%;
	overflow-y: hidden;
}

.recap{
	border-right: 1px solid #E8E8E8;
	width: 70%;
	overflow-y: scroll;
}

.highlight{
	width: 30%;
	overflow-y: scroll;

}

.top{
	background-color: white;
	position: sticky;
	top: 0;
	padding-left: 2vh;
	width: calc(100% - 2vh);
	margin-bottom: 4vh;
	z-index: 2;
}
