* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

body {
  background-color: #212121;
}

.w-main {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  animation: fadeIn 0.3s ease-in-out;
}

ul {
  display: flex;
  list-style: none;
}
ul li {
  margin: 0 0.25rem;
}
ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}
ul li a .material-symbols-outlined {
  transition: all 0.3s ease;
  padding: 0.5rem;
}
ul li a .material-symbols-outlined:hover {
  color: #bc8f8f;
}
ul li a:hover .label {
  opacity: 1;
}
ul li a .label {
  transition: all 0.3s ease;
  border: 1px solid #4e4e4e;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  font-size: 0.875rem;
  padding: 0.25rem;
  transform: translateX(-50%) translateY(-2px);
  border-radius: 0.25rem;
  pointer-events: none;
  opacity: 0;
}

.w-projects ul {
  flex-direction: column;
}
.w-projects li {
  margin: 1rem;
}
.w-projects li:nth-child(1) a {
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25%;
}
.w-projects a {
  transition: all 0.3s ease;
  text-decoration: underline;
}
.w-projects a:hover {
  color: #bc8f8f;
}
.w-projects {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=main.css.map */