@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,700,900&display=swap");
* {
  font-family: Montserrat;
}

nav {
  display: -ms-grid;
  display: grid;
  font-family: Montserrat;
  list-style: none;
}

nav #avatar {
  height: 50px;
  width: auto;
  margin: auto;
}

nav .login {
  background: transparent;
  border: 2px solid grey;
  color: grey;
  padding: 5px 20px;
  border-radius: 50px;
}

nav .login:hover {
  background: #4375ff;
  color: white;
  border: 2px solid transparent;
}

nav .signin {
  background: #4375ff;
  border: 2px solid transparent;
  color: white;
  padding: 5px 20px;
  border-radius: 50px;
}

nav .signin:hover {
  background: transparent;
  border: 2px solid #4375ff;
  color: #4375ff;
}

ul {
  list-style: none;
  font-family: Montserrat;
}

ul li {
  padding: 10px;
}

ul li i {
  color: #007bff;
}

.flex-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/*# sourceMappingURL=main.css.map */