* {
  font-family: Arial, Helvetica, sans-serif;
}

.wip {
  width: 100%;
  text-align: center;
  font-size: 150px;
  box-sizing: border-box;
  margin-top: 275px;
  /* filter: blur(5px); */
}

.wip-sub {
  width: 100%;
  text-align: center;
  font-size: 75px;
  box-sizing: border-box;
  /* filter: blur(1px); */
}

.hero-link {
  padding: 20px;
}

/* title */
title {
  text-decoration: none;
  font-size: large;
  color: black;
  text-transform: uppercase;
}

/* navigation bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
}

.sticky-bg {
  width: 100%;
  backdrop-filter: blur(20px);
}

nav {
  position: sticky;
  top: 0;
  z-index: 11;
}

nav a {
  text-decoration: none;
  color: #000000;
  transition: 0.5s;
}

nav a:hover {
  color: rgb(0, 0, 0);
  font-weight: 500;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding-right: 10px;
}

.nav-links ul li a {
  text-decoration: none;
  color: #000000;
  transition: 0.5s;
}

.nav-links ul li a:hover {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 500;
}

nav .fa {
  display: none;
}

/* profile intro */

#hero-section {
  width: 100%;
  height: 1200px;
}

.profile-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 20%;
  gap: 1px;
}

li {
  list-style-type: none;
}

h2#intro {
  width: 100%;
  color: black;
  margin-left: 40%;
  margin-top: 200px;
}

p#sub-intro {
  width: 100%;
  color: black;
  display: inline-block;
  margin-left: 40%;
  margin-top: 10px;
}

a[href="portfolio.html"] {
  text-decoration: none;
  color: black;
  padding: 5px;
  border: 2px solid black;
  border-radius: 25px;
  display: inline-block;
}

img#profile {
  width: 30%;
  height: auto;
  border-radius: 25px;
  margin-left: 30%;
  margin-top: 150px;
}

#contact {
  background-color: black;
  width: 100%;
  height: 70px;
  /* display: flex;
  align-items: row;
  justify-content: space-around;
  gap: 50px; */
}

#contact img {
  height: 25px;
  width: auto;
}

#projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 10px;
  text-align: center;
  margin-top: 150px;
}

.grid-item img {
  width: 75%;
  height: auto;
  padding: 10px;
  text-align: center;
  border-radius: 25px;
  transform: translateY(0);
  transition: ease;
}

h3#project-names {
  margin-bottom: 200px;
  font-weight: normal;
}

.grid-item:hover {
  transform: translateY(-20px);
  transition: 0.5s;
}

/* project 1 */

.opening-image img {
  width: 100%;
  height: auto;
  margin-top: 85px;
}

.project-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

#project-introduction {
  width: 90%;
  color: black;
  border: 50%;
  margin: 5% 0;
  margin-left: 5%;
  /* display: inline-block; */
  box-sizing: border-box;
}

.project-images img {
  text-align: center;
  width: 80%;
  /* max-width: 600px; */
  height: auto;
  margin: 5% 10%;
  border-radius: 25px;
  display: inline-block;
}

ul.project-images {
  padding: 0;
}
