main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.front-end-proj {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Aclonica', sans-serif;
}

.proj-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 18px;

  gap: 10px;
}

.proj-mobile h1 {
  color: #beb0b0;
  font-size: 24px;
}

.proj-mobile p {
  color: #588386;
  font-size: 14px;
}

.proj-front {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.proj-front div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.proj-front a {
  text-decoration: none;
  color: inherit;
}

.proj-front div p {
  align-self: center;
  text-align: center;
  padding: 16px 0;
  background-color: #ffa800;
  box-shadow: 0 5px 10px black;
  opacity: 80%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 10px;
  font-family: 'Courier New', Courier, monospace;
}

.proj-front div img {
  width: 170px;
  height: 280px;
  border: 1px solid black;
  box-shadow: 0 5px 10px black;
}

.proj-front div h3 {
  color: #588386;
  font-size: 14px;
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-right: 1px solid black;
  width: 170px;
  text-align: center;
  padding: 2px 0;
  background-color: #c4c4c4;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* desktop */

.front-proj-lg .proj-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  font-family: 'Aclonica', sans-serif;
  gap: 10px;
}

.front-proj-lg .proj-mobile h1 {
  color: #beb0b0;
  font-size: 36px;
}

.front-proj-lg .proj-mobile p {
  color: #588386;
  font-size: 24px;
}

.proj-lg {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.proj-lg a img {
  width: 346px;
  height: 474px;
  border: 1px solid black;
  position: relative;
  box-shadow: 0 5px 10px black;
}

.proj-lg a div.program-lang {
  position: absolute;
  width: 94%;
  height: 70%;
  background-color: #a5abad;
  opacity: 90%;
  text-align: center;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proj-lg a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
}

.program-lang h3 {
  padding-top: 10px;
  font-size: 20px;
  font-weight: bold;
}

.program-lang p span {
  text-transform: uppercase;
  font-weight: bold;
}

.program-lang .view-btn-lg {
  padding-bottom: 10px;
  background-color: #ffa800;
  width: 40%;
  text-align: center;
  margin-bottom: 10px;
  padding: 10px 0;
  align-self: center;
  border-radius: 10px;
}

.program-lang {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s linear, visibility 0.2s linear;
  /* Restul stilurilor tale... */
}

.project-lg:hover .program-lang {
  opacity: 0.8;
  visibility: visible;
}
