:root {
  --backgroundcolor: #111215;
  --white: #ffffff;
  --primarycolor: #12c2e9;
  --secondarycolor: #c471ed;
  --tertiarycolor: #f64f59;
  --gradientcolor: linear-gradient(
    45deg,
    var(--primarycolor),
    var(--secondarycolor),
    var(--tertiarycolor)
  );
  --cardcolor: #16171a;
  --bordercardcolor: rgba(255, 255, 255, 0.3);
  --font-family: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 74.12rem;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 100px;
}

.projects-title {
  background: var(--gradientcolor);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(font-family);
  font-size: 4rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}
.projects-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 3px solid var(--primarycolor);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  width: 22.1875rem;
  height: 25.8125rem;
}

.project-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.wrapper-img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.wrapper-img img {
  width: 59px;
  height: 79px;
}

#woody {
  width: 13.0625rem;
  height: 13.1875rem;
  flex-shrink: 0;
  align-self: center;
}

#port {
  width: 13.8125rem;
  height: 13.8125rem;
  flex-shrink: 0;
}

#hike {
  height: 10.8125rem;
  flex-shrink: 0;
  object-fit: cover;
}

.project-info {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.project-title {
  font-size: 1.2em;
  color: var(--primarycolor);
  font-family: "Poppins", sans-serif;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-align: left;
}
.project-subtitle {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-align: left;
}
.project-link {
  align-self: flex-end;
  color: var(--primarycolor);
  font-size: 1.5em;
}

a {
  text-decoration: none;
}

.tailwindlogo {
  width: 100%;
  object-fit: cover;
}
