body {
  margin: 0;
  padding: 0;
  background-color: #171717;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Courier New", monospace;
}

.top-bar-pag {
  position: fixed;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #181818;
  color: white;
  align-items: center;
  padding: auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
}

.projects-list {
  position: fixed;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  top: 65%;
  left: 25%;
  width: 50%;
  height: 10%;
  background-color: #181818;
  color: white;
  align-items: center;
  padding: auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
}

.projects-list-item {
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #181818;

  border-style: none;

  color: white;

  width: 100%;
  height: 100%;

  transition: 0.3s ease;
}

.projects-list-item:hover {
  background-color: #75b2b4;
  box-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.projects-list-item:active {
  background-color: #202020;
}