@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600&display=swap");

body {
  color: #ababab;
  background-color: #1a1a1a;
  margin: 0;
  padding: 0;
  font-family: "Space Grotesk", sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.pixeled-canvas-logo-container {
  border: 1px solid #252525;
  border-radius: 0.5rem;
  background-color: #161616;
  color: #ababab;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: fit-content;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  transition: transform 0.2s ease;
}

.pixeled-canvas-logo-container:hover {
  transform: scale(1.02);
}

.pixeled {
  color: #161616;
  background-color: cadetblue;
  border-radius: 0.3rem;
  padding: 0.4rem 0.6rem;
}

.link-list {
  list-style: none;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-list li {
  width: 100%;
}

.link-list a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #ababab;
  background-color: #222;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.link-list a:hover {
  background-color: cadetblue;
  color: #1a1a1a;
  border-color: cadetblue;
  font-weight: 600;
}

.blob{
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgb(80, 80, 80));
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.8;
    z-index: -1;
}


.second{
    bottom: 0;
    right: 0;
}
