@font-face {
	font-family: 'Gohu';
	src: url('gohufont.ttf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

body {
	background-color: #0D0D0D;
	color: WHITE;
	font-family: 'Gohu', monospace;
  font-size: 28px;
}

header {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;

}

header h1.name {
  text-align: center;
}

header nav ul {
  border: 2px solid #777777;
  padding: 10px;
  flex-direction: row;
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 15px;

}

header nav ul li {
  margin-right: 10px;
  margin-left: 10px;
}

header nav ul li a {
  text-decoration: none;
  COLOR: gray;
  transition: color 0.3s ease;
}
header nav ul li a:hover {
  COLOR: white;
}

header nav ul li a.active {
    color: white;
}

#home h2 {
  text-align: center;
}

p {
  color: gray;
  margin-left: 20px;
}
p a {
  color: white;
  text-decoration-color: gray;
  text-decoration-thickness: 2px
}


