@font-face {
  font-family: "neue machina";
  src: url("./NeueMachina-Regular_DQCmjH1st.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "neue machina";
}

body,
html {
  height: 100%;
  width: 100%;
}

main {
  height: 100%;
  width: 100%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 3rem 2rem 3rem;
  font-size: 1.1rem;
}

.nav-left {
  display: flex;
  justify-content: space-between;
  gap: 10rem;
  width: 40%;
  /* background: red; */
  font-weight: 600;
  color: #0c0c0c;
}

#nav-left-inner {
  display: flex;
  gap: 2rem;
}

.nav-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: lightblue; */
  width: 25%;
  gap: 1.5rem;
}

.nav-right > a {
  text-decoration: none;
  color: #0c0c0c;
  font-weight: 600;

  transition: 0.3s ease-in-out;
}
.nav-right > a:hover {
  color: crimson;
  text-decoration: underline;
  text-underline-offset: 0.6rem;
}
.nav-right > #shop {
  position: relative;
}

.nav-right #notification {
  position: absolute;
  right: -10px;
  top: 0.5%;
  height: 8px;
  width: 8px;
  border-radius: 10px;
  background: crimson;
}

#hero-section {
  height: 70%;
  width: 100%;
  /* background: crimson; */
  padding: 1.5rem 3rem;
  color: #0c0c0c;
}

#hero-section > h1 {
  font-size: 7rem;
  line-height: 8rem;
  letter-spacing: -6px;
  font-weight: 550;
  word-spacing: -8px;
}
#hero-section > h4 {
  font-size: 1.2rem;
  letter-spacing: -1px;
  font-weight: 400;
  margin-bottom: 1rem;
}

#projects {
  height: 85%;
  width: 100%;
  /* background: lightblue; */
  padding: 0rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

#projects-header {
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
}

#projects-header-rght {
  display: flex;
  align-items: center;
  gap: 4rem;
}

#projects-header-rght h4 {
  background: crimson;
  padding: 0.5rem;
  border-radius: 50%;
  text-align: center;
}

#projects-header-rght > #line {
  height: 0.2rem;
  width: 12rem;
  background: #0c0c0c;
}

#projects-content {
  height: 85%;
  width: 100%;
  /* background: pink; */
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 0rem 0.5rem;
}

#projects-card {
  height: 82%;
  width: 49%;
  /* background: crimson; */
}
#projects-card #image1 {
  height: 100%;
  width: 100%;
  background: url(./004.png);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  pointer-events: none;
}
#projects-card #image2 {
  height: 100%;
  width: 100%;
  background: url(./portfolio.png);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  pointer-events: none;
}

#card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.5rem;
}
#card-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
  pointer-events: none;
}

#card-content h5 {
  color: #404040;
  pointer-events: none;
  font-weight: 300;
}
#card-content i {
  border: 2px solid #0c0c0c;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.15rem;
  transition: 0.3s ease-in-out;
  color: crimson;
}

#card-content a {
  text-decoration: none;
  color: #0c0c0c;
}

#card-content i:hover {
  color: #ffffff;
  background: crimson;
}
