:root {
  --background: #000000;
  --text: #d400ff;
  background: var(--background);
}

/* prettier-ignore */
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

@font-face {
  font-family: "SIMPLIFICA";
  src: url("assets/simplifica.woff2") format("woff2"),
    url("assets/simplifica.woff") format("woff");
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

#title {
  text-align: center;
  font-family: SIMPLIFICA, sans-serif;
  font-size: 4.2vmax;
  color: var(--text);
  margin-bottom: 2rem;
}

#credit {
  position: fixed;
  bottom: 0;
  font-family: sans-serif;
  font-size: 10px;
  color: hsl(270, 42%, 42%);
}

#pfp {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 50%;
}


.themetoggle {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #ab1919;
  background-repeat: no-repeat;
  background-image: url("assets/contrast.png"), linear-gradient(to bottom, #9b3db3 5%, #8a1f71 100%);
  background-size: contain;
  background-position: center center;
}

#buttonsContainer {
  display: flex; 
  margin-top: 30vh; 
  justify-content: center; 
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.socialbtn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid rgba(212, 0, 255, 0.3);
  display: flex;
  align-items: center;background-size: 70%;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.socialbtn:hover {
  border-color: var(--text);
  box-shadow: 0 0 20px rgba(212, 0, 255, 0.5);
  background: rgba(212, 0, 255, 0.1);
  transform: scale(1.05);
  background-size: 75% !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.dc-btn .username {
  position: absolute;
  margin-top: -15px;
  margin-left: 10px;
  opacity: 0.8;
  scale: 0.0;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.dc-btn:hover .username {
  color: var(--text);
  opacity: 1;
  scale: 1;
  margin-top: -100px;
}