@font-face {
    font-family: 'Anton';
    src: url('/fonts/Anton-Regular.ttf');
}
@font-face {
    font-family: 'Noto Sans';
    src: url('/fonts/NotoSans.ttf');
}

/* Light mode (default) */
body {
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  cursor: default;
  text-align: center;
  padding: 20px 0 20px 0;
  font-family: 'Noto Sans', sans-serif;
}

a {
  color: #fffd;
  text-decoration: none;
  transition: color 0.1s;
}
a:hover {
  color: white;
}

.description {
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #ffffffb0;
}

.container {
  width: 90%;
  max-width: 640px;
}

.profile-pic {
  height: 320px;
  object-fit: cover;
}

.name {
  font-family: 'Anton' !important;
  align-items: center;
  font-size: 4em;
  line-height: 1;
  transform: translate(-3px,0px) skew(-4deg);
  -webkit-transform: translate(-3px,0px) skew(-4deg);
}
.name-main {
  font-weight: 500;
}
.name-subtitle {
  font-weight: 500;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.link-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #21262d;
  padding: 15px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 0.3s, transform 0.2s;
  text-align: center;
  justify-content: center;
  margin-left: 12%;
  margin-right: 12%;
}

.link-button:hover {
  transform: scale(1.0125);
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: #8b949e;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-group {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.icon-button {
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  background: none;
  color: #ffffffa0;
}

.icon-button i {
  font-size: 24px;
}

.icon-button:hover {
  color: #ffffffff;
  transform: scale(1.25);
}

.icon-button:active {
  transform: scale(0.95);
}

.link-button-text {
  font-size: 14px;
  color: #8b949e;
}

.copyright {
  margin-top: 15px;
  font-size: 12px;
}

.small {
  font-size: 93%;
}

/* Brands */
#clef {
  background: linear-gradient(#FF8226, rgb(224, 106, 21));
}
