@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@1,100&family=Luxurious+Roman&family=Montserrat:ital,wght@1,500&display=swap");

* {
  background-color: #24252a;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

li,
a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: "16px";
  color: bisque;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 30px 10%;
}

.logo {
  margin-right: auto;
  height: 45px;
  width: auto;
  cursor: pointer;
}

.nav_links {
  list-style: none;
}

.nav_links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav_links li a {
  transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
  color: #0088a9;
}

h2 {
  padding: 9px 25px;
  font-size: 30px;
  color: bisque;
}

h1 {
  padding: 9px 25px;
  font-size: 50px;
  color: bisque;
}

p {
  padding: 9px 25px;
  color: whitesmoke;
}

.web_links {
  color: lightseagreen;
}

.web_links:hover {
  color: #0088a9;
}

.intro {
  font-family: "BarlowSemiCondensed", sans-serif;
  color: #0088a9;
}

.project {
  padding: 9px 25px 9px 25px;
  color: limegreen;
  text-align: center;
}

#projects p,
.project {
  text-align: left;
}

footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  height: auto;
  width: 100vw;
  font-family: "Open Sans";
  padding-top: 40px;
  color: #fff;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.footer-content p {
  max-width: 500px;
  margin: 10px auto;
  line-height: 28px;
  font-size: 14px;
}
.socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 3rem 0;
}
.socials li {
  margin: 0 10px;
}
.socials a {
  text-decoration: none;
  color: #fff;
}
.socials a i {
  font-size: 1.1rem;
  transition: color 0.4s ease;
}
.socials a:hover i {
  color: aqua;
}

.footer-bottom {
  background: #000;
  width: 100vw;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
}
.footer-bottom span {
  text-transform: uppercase;
  opacity: 0.4;
  font-weight: 200;
}

.project_image {
  height: 150px;
  width: auto;
  padding: 9px 25px;
  transition: all 0.3s ease 0s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.project_image:hover {
  opacity: 50%;
}

#projects {
  display: flex;
}

#projects div h3 {
  text-align: center;
}
