
/* Reset */


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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* Personal resets */

*,*::before,*::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    color: inherit;
    text-decoration: none;
}

button{
    background-color: transparent;
    border: 1px solid black;
    border-radius: 5px;
    padding: .25rem .75rem
}


.profile{
    background-color: rgb(8, 8, 8);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}
.pfp{
    width: 8rem;
    height: 8rem;
    background-color: red;
    overflow: hidden;
    border-radius: 50%;
}
.pfp img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.p-name{
    font-size: 2rem;
    text-align: center;
    padding: 1rem 0 .5rem 0;
}
.p-description{
    font-size: 1rem;
    text-align: center;
    opacity: 50%;
}

.main-content{
     background-color: rgb(0, 0, 0); 
    padding:  2rem 3rem;
    display: flex;
    justify-content: center;

}
ul{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem
}


ul li{
    background-color: rgb(12, 12, 12);
    padding: 1rem;
    border-radius: .5rem;
}
ul .title{
    font-size: 1.05rem;
}
ul .description{
    opacity: .5;
    padding: .5rem 0;
    font-size: .89rem;
}







html{
    background-color: black;
    color: white;
    font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}