body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
* {
  margin: 0;
  padding: 0;
  text-align: start;
  box-sizing: border-box;
  color: #e9deff;
}
.link-to-home{
  background-color: #2c07569f;
  padding: 5px 10px;
  border-radius: 20px;
  font-family: "Murecho", sans-serif;
  width: fit-content;
}
.container {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 30px;
}
.image-key {
  margin: auto;
  border-radius: 20px;
  background-color: #2c07569f;
  justify-content: center;
  padding: 20px;
}
.key {
  margin: 20px auto;
  background-color: #8d8d8d2c;
  padding: 10px;
  border-radius: 10px;
}
.projects-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #b923ff, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.tools {
  display: grid;
  margin-top: 10px;
  width: 90%;
  grid-template-columns: max-content max-content max-content max-content;
  gap: 10px;
}
.tool {
  background-color: blueviolet;
  padding: 5px;
  border-radius: 7px;
  width: 110px;
  text-align: center;
}
.tool:hover{
  transform: scale(1.02);
}

.projects-description {
  width: 80%;
  margin: 10px 0;
}
.projects-subtitle {
  font-size: 30px;
  font-weight: bold;
  color: rgb(255, 203, 255);
}
.projects-structure {
  margin: 10px 0;
  margin-top: 20px;
  border-radius: 15px;
  background-color: rgba(54, 54, 54, 0.418);
  width: 60%;
}
.section {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
}
.img {
  width: 100%;
  border-radius: 15px;
}
.ink-btn {
  padding: 10px;
  border-radius: 15px;
  text-align: center;
  font-size: 16px;
  border: none;
  width: 120px;
  background-color: #b923ff;
  color: #0b001a;
  font-weight: 600;
}
.link-img {
  width: 10px;
}
.projects-btns{
    display: flex;
    gap: 10px;
    margin: 2px auto;
  }
.ink-btn:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 5px #b923ff,
    0 0 10px #b923ff,
    0 0 20px #b923ff;
}
@media (max-width: 1000px) {
   * {
    box-sizing: border-box;
    text-align: center;
  }
  .container {
    width: 90%;
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 20px;
  }
  .tools{
    margin: 5px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .projects-description{
    margin: 10px auto;
  }
  .projects-btns{
    justify-content: center;
    margin: 2px auto;
    padding: 2px;
  }
}
