@font-face {
	font-family: "Ubuntu";
	src: url("./assets/Ubuntu_Mono/UbuntuMono-Bold.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

html {
	overflow: hidden;
}

* {
	padding: 0;
	margin: 0;
	color: black;
	font-family: "Ubuntu";
}

*:not(#pic)::selection {
	color: white;
	background: black;
}

#pic::selection {
	color: rgba(0, 0, 0, 0);
	background: rgba(0, 0, 0, 0);
}

.main {
	display: flex;
	justify-content: center;
	height: 100vh;
	margin-top: 6vh;
}

.main h1 {
	margin-top: 5vh;
	display: flex;
	justify-content: center;
	font-size: 32px;
}

.main h1 a {
	text-decoration: none;
	transition: 0.2s;
}

.main h1 a:hover {
	transition: 0.2s;
	color: white;
	background: black;
}

ul {
	display: flex;
	justify-content: center;
}

li {
	list-style-type: none;
	padding: 5%;
	font-size: 15px;
}

#pic {
	width: 250px;
	height: auto;
}

@media (max-width: 480px) {
  body {
    font-size: 1.5em; /* Slightly larger text */
  }
}

