@import url("https://fonts.googleapis.com/css2?family=Merriweather&display=swap");

html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 67.5%;
  font-family: "Merriweather", serif;
  margin: 20px auto;
  max-width: 1200px;
  background-color: rgba(0, 0, 0, 0.794);
  color: white;
}

* {
  margin: 20;
  padding: inherit;
  box-sizing: inherit;
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
}

#profileImage{
  border-radius: 100%;
  filter: grayscale(10%);
  filter: drop-shadow(8px 8px 10px gray);

}

p,li{
  font-size: 2rem;
  list-style-type: none;
}
/* NAV */
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid rgb(226, 54, 54);
  text-transform: capitalize;
  color: white;
}

.navbar__left {
  /* margin: ; */
  /* justify-content: left;  */
}
a {
  text-decoration: none;
  color: inherit;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

nav li {
  /* margin-left: 15px; */
  padding: 5px;
  border-left: 1px solid rgb(226, 54, 54);
}

nav li:hover{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

nav li:first-child{
  border-left: none;
}

/* BODY */
.container{
  max-width: 1000px;
  margin: 80px auto;
  text-align: center;
}

.repos li {
  flex-direction: row;
  padding: 10px;
  list-style-type: circle;
  font-size: 1.8rem;
}
