html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
    box-sizing: border-box;
	}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;

}

.disable-scrollbars::-webkit-scrollbar {
	background: transparent; /* Chrome/Safari/Webkit */
	width: 0px;
  }
	  
  .disable-scrollbars {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE 10+ */
  }

html {
    scroll-behavior: smooth;
  }

:root  {
    --color2 :rgb(182, 182, 182);
}
body *{
    box-sizing: border-box;
    background-color: rgb(255, 253, 247)
} 

body {
    font-family: Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: -0.2px;
}
a {
    color: black;
    text-decoration: none;
}

main{
width: 100vw;
height: 100vh;
padding: 5px;
position: relative;
}
h1{
    margin-bottom: 3px;
    color: greenyellow;
}
.design{
    color: var(--color2);
}
.tag{
    width: fit-content;
    height: fit-content;
    padding: 5px;
    background-color:rgb(236, 236, 236);
    color: var(--color2);;
    font-size: 9px;
    border-radius: 8px;
    opacity: 0.5;
}
ul{
    display: flex;
    flex-direction: column;
    height: fit-content;
    gap: 3px;
}
ul li{
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}
.year{
    margin-right: 3px;
}
#infos{
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.l{
    font-weight: 100;
}
a:hover{
    color: greenyellow;
}
