/* UNIVERSAL PAGE STYLING and FONT */

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

html {
  font-family: "poppins", sans-serif;
  max-width: 75vw;
  margin: 0 auto;
  scroll-behavior: smooth;
}

/* HEADER and NAV */

#header {
  display: flex;
  justify-content: space-between;
}
#header img {
  max-width: 260px;
  padding: 10px;
}
.git {
  width: 175px;
  background-color: #273b7b;
  height: 35px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.25em;
  margin: 6px;
  border-radius: 5px;
  padding-top: 3px;
  margin-top: 25px;
  box-shadow: 3px 3px 4px rgb(140, 140, 140);
}
.head-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.head-right > a:first-child {
  font-weight: 600;
}
#nav {
  border-top: solid lightgray 1px;
  height: 65px;
}
.navul {
  display: flex;
  justify-content: space-evenly;
  list-style-type: none;
  height: 100%;
  align-items: center;
}
.navul a {
  text-decoration: none;
  color: black;
  font-size: 1.25em;
  padding: 5px 10px;
  transition: 0.3s ease-in-out;
}
.navul a:hover {
  background-color: #273b7b;
  border-radius: 20px;
  color: white;
}

/* FOOTER */

footer {
  text-align: center;
  border-top: solid 1px;
  margin-top: 10px;
  border-color: lightgray;
  color: gray;
  padding: 15px;
}
footer ul {
  font-size: 0.75em;
  display: flex;
  justify-content: center;
}
footer ul li {
  margin: 5px 10px 5px 10px;
  padding: 5px 10px 5px 10px;
  list-style-type: none;
  font-size: 1.25em;
  color: gray;
  transition: 0.3s ease-in-out;
}
footer ul li:hover {
  background-color: #273b7b;
  border-radius: 20px;
  color: white;
}
footer ul a {
  text-decoration: none;
}
