.gridItem{
    width: 350px;
    height: 95%;
    background-color: #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    padding: 10px;
    border-radius: 20px;
    align-self: center;
    justify-self: center;
    transition: all ease 0.3s;
    margin-bottom: 10px;
    opacity: 0;
}

.projectImage{
    width: 350px;
    height: 207px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow:0px 4px 4px 0px #00000050; ;
}
.projectDiscription{
    font-size: 0.65rem;
    color: #cacaca;
    text-decoration: none;
    margin: 0;
    text-align: left;
    width: 100%;
}
.projectName{
    color: #fff;
    margin: 0;
    text-align: left;
    margin-top: 10px;
    align-self: flex-start;
    margin-bottom: 10px;
}
.projectWarning{
    font-size: 0.65rem;
    color: #FF4E5D;
    text-decoration: none;
    margin: 0;
    align-self: flex-start;
}
.grid{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    width: 90vw;
    margin-left: 5vw;
}
.cardanimate{
    position: relative;
    transition: all ease 0.3s;
    border-radius: 20px;
    width: fit-content;
    height: fit-content;
    align-self: center;
    justify-self: center;
}
.cardanimate:hover{
    box-shadow: 0px 0px 0px 6px #FF4E5D,
        0px 0px 0px 12px #62FF51,
        0px 0px 0px 18px #9785FB,
        0px 4px 4px 18px #00000084;
    transform: translateY(-20px) scale(1.05);
    z-index: 100;
}
@media (max-width:750px) {
  .projectName{
    font-size: 2rem;
  }
  .projectDiscription{
    font-size: 1rem;
  }
}
@media (max-width:450px) {
  .gridItem{
    width: 250px;
  }
  .projectImage{
    width: 250px;
    height: 148px;
  }
  .grid{
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}