html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inconsolata", monospace;
  max-width: 600px;
  margin: auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0px 30px 0px;
}

.profile h1 {
  font-size: 30px;
  margin-bottom: 0;
}

.profile h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.profile p {
  margin-top: 0;
}

.profile h1 a {
  position: relative;
  display: inline-block;
  color: rgb(76, 0, 182);
  text-decoration: none;
}

.logo {
  transition: opacity 0.5s;
}

.name {
  font-size: 40px;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.5s;
}

.profile h1 a:hover .logo {
  opacity: 0;
}

.profile h1 a:hover .name {
  font-size: 40px;
  font-weight: bolder;
  opacity: 1;
}

.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.nav-links a {
  color: black;
  text-decoration: none;
}

.nav-links a:hover {
  font-weight: bold;
  color: rgb(76, 0, 182);
  text-decoration: underline;
}

.about h3 {
  font-weight: normal;
  font-style: italic;
}