body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	margin-top: 4rem;
	text-align: center;
	font-family: ui-sans-serif, system-ui, sans-serif;
}

.profile {
	width: auto;
	height: auto;
	max-height: 280px;
	max-width: 280px;
	border-radius: 50%;
}

h1 {
	margin-top: -5.1rem;
	margin-bottom: -0.5rem;
	font-size: 11rem;
	font-weight: 800;
	letter-spacing: -0.2rem;
	text-shadow: 9px -9px 0 #fff;
}

h2 {
	margin-top: -0.5rem;
	margin-bottom: -0.1rem;
	font-size: 3rem;
}

h3 {
	font-weight: 800;
	font-size: 1.5rem;
}

a {
	color: #000000;
	text-decoration: underline;
	text-decoration-color: rgba(0, 0, 0, 0.5);
	transition: 0.05s;
}

a:hover {
	text-decoration-color: rgba(0, 0, 0, 0.95);
}

.signature {
	font-family: 'Aesthetic Notes', sans-serif;
	-webkit-text-stroke: 0.9px;
	font-size: 4.3rem;
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Aesthetic Notes';
	font-style: normal;
	font-weight: 400;
	src: local('Aesthetic Notes'), url('AestheticnotesDemo-AL69x.woff2') format('woff2');
	font-display: swap;
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	justify-content: center;
	display: flex;
}

li {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

footer svg {
	text-align: center;
	height: 2rem;
	margin-top: 3.5rem;
	transition: transform .2s ease-out;
}

footer svg:hover {
	opacity: 0.75;
}

@media (prefers-color-scheme: dark) {
  body {
	  color: #fff;
	  background-color: #262626;
  }
  
  h1 {
  	text-shadow: 9px -9px 0 #262626;
  }
  
  a {
	  color: #fff;
	  text-decoration-color: rgba(255, 255, 255, 0.5);
  }
  
  a:hover {
	  text-decoration-color: rgba(255, 255, 255, 0.95);
  }
  
  footer svg {
	  fill: #fff;
  }
}