@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

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

body {
  font-family: "Inter", sans-serif;
  color: #333;
  background-color: #f5f5f5;
}

main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.head h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.head h6 {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  line-height: 1.4;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-holder {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: #1f1f1f;
  color: #fff;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

.link-holder:hover {
  background-color: #3a3a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.link-holder img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.link-holder span {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.sign {
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .container {
    width: 100%;
    max-width: 420px;
    background-color: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  main {
    align-items: center;
    justify-content: center;
  }
}
