body {
  font-family: Fira code, monospace;
  background-color: #171717;
  color: white;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  gap: 20px;
  margin-bottom: 40px;
}

.content {
  display: flex;
  justify-content: space-between;
  margin-left: 250px;
  margin-right: 250px;
  align-items: start;
  gap: 20px;
}

.nav {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

a:link {
  color: yellow;
}

a:visited {
  color: cyan
}

a:hover {
  color: lightcoral;
  transition: 0.5s;
}

.photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}