* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.icon-header {
  display: flex;
  justify-content: baseline;
  align-items: baseline;
}

h1 {
  font-weight: 600;
}
.nav-div {
  /* margin-left: 260px; */
  margin-left: 100px;
  justify-content: right;
}

.nav-logo {
  font-size: 2rem;
  position: relative;
  bottom: 20px;
  margin-left: -15px;
}

#dove-icon {
  height: 5em;
  width: 5em;
  border-radius: 50%;
}

li > a {
  text-decoration: none;
  color: #1f1f7a;
  font-size: 1.2rem;
  text-transform: uppercase;
}

li > a:hover {
  color: #ccc;
  text-decoration: underline;
}

.sign-in {
  background-color: darkblue;
  color: white;
  border-radius: 7px;
  display: inline-block;
  width: 5em;
  text-align: center;
}

.sign-in > a {
  color: white;
}

.sign-in > a:hover {
  border: 2px solid darkblue;
  border-radius: 7px;
  background-color: white;
  color: darkblue;
  text-decoration: none;
}

@media screen and (max-width: 787px) {
  .nav-div {
    margin-left: 20px;
  }
}
