#title {
  font-size: 3.5rem;
  color: var(--melon-quemado);
  font-weight: 600;
  text-transform: uppercase;
}

.bodycont {
  justify-items: center;
  background: transparent;
  margin-bottom: 3rem;
}

.cardcont {
  display: flex;
  flex: 1;
  width: 100%;
  height: max-content;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.content {
  width: fit-content;
  margin: 40px 20px;
  align-items: center;
}

.project-info {
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  top: -50px;
}

.project-title {
  font-weight: 600;
  font-size: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-wrap: wrap;
  color: var(--carbon);
}

.lighter {
  font-size: 0.9em;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*DELETE THIS TWO LINE*/
.delete {
  background-color: var(--metalico);
}

.card-img div {
  width: 90%;
}
/*IF USING IMAGES*/

.card {
  background: radial-gradient(var(--naranja-rally), var(--mandarina));
  color: var(--gris);
  width: 380px;
  /* max-height: 580px; */
  height: 380px;
  border-radius: 18px;
  box-shadow: rgba(202, 155, 155, 0.25) 10px 25px 35px -10px,
    rgba(47, 32, 22, 0.25) 10px 25px 30px -20px;
  border-radius: 25px;
}

.card-img {
  position: relative;
  top: -20px;
  height: 100px;
  display: flex;
  justify-content: center;
}

/* Change the .card-img div to .card-img img to use img*/
.card-img a,
.card-img div {
  height: 150px;
  width: 90%;
  /* Change this width here to change the width of the color/image */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 15px;
}

.card-imgs {
  transition: all 0.5s;
}

.card:hover {
  background: radial-gradient(var(--mandarina), var(--melon-quemado));
  color: black;
  font-size: 1.1rem;
  width: 400px;
  max-height: 450px;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border-radius: 25px;
  transform: scale(1.1);
}
