.projects-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  z-index: 0;
}

.projects-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  height: 1000px;
  overflow-y: auto;
  padding-top: 120px;
}

.project {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proj-name {
  font-family: ITC-serif-gothic;
  font-size: 40px;
  margin-bottom: 0px;
  margin-top: 0px;
  color: rgb(239, 127, 64);
  user-select: none;
}

.proj-link {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 70%;
  height: 180px;
  background-color: rgb(239, 127, 64);
  margin-bottom: 80px;
  text-decoration: none;

  transition: background-color .05s;
}

.proj-link-img {
  position: absolute;
  width: 97%;
  height: 90%;
  background-color: rgb(177, 95, 47);
  object-fit: cover;
  user-select: none;
}

.proj-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.proj-desc-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  user-select: none;

  opacity: 0;
  transition: opacity .3s;

  z-index: 1;
}

.proj-link:hover .proj-desc-holder {
  opacity: 1;
  cursor: pointer;
}

.proj-desc-title {
  margin-top: 10px;
  margin-bottom: 0px;
  font-family: ITC-serif-gothic;
  font-size: 30px;
  text-align: center;
  color: rgb(239, 127, 64);
}

.proj-desc {
  margin-top: 8px;
  margin-bottom: 8px;
  font-family: ITC-serif-gothic-regular;
  font-size: 22px;
  text-align: center;
  color: rgb(250, 220, 196);
}

.proj-line {
  width: 60%;
  margin-bottom: 25px;
  user-select: none;
}

@media (width <= 1000px) {
  .projects-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 3000px;
    overflow-y: auto;
    padding-top: 170px;
  }

  .proj-name {
    font-size: 60px;
  }

  .proj-link {
    width: 80%;
    height: 210px;
  }
}
