body {
  background-color: #fffcf5;
  margin: 2rem;
}

.dark {
  background-color: #151d40;
  color: #fffcf5;
}

img {
  width: 50px;
  height: auto;
}

header {
  display: flex;
}

header img {
  height: 20px;
  width: auto;
}

button {
  width: 50px;
  height: 50px;
  align-self: center;
  margin-left: 1rem;
  background-color: white;
  border-radius: 10%;
  flex-shrink: 0;
}

nav {
  align-content: center;
}

nav ul {
  list-style: none;
}

nav li {
  display: inline-block;
  margin-left: 1rem;
  font-size: 20px;
}

nav a {
  color: black;
  font-weight: 600;
}

.right {
  margin-left: auto;
}

ul a {
  text-decoration: none;
}

section {
  margin-bottom: 3rem;
}

p {
  font-size: 18px;
}

#projects li,
#projects a {
  font-size: 20px;
}

@media only screen and (max-width: 750px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .right {
    margin-left: 0;
  }

  button {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
