@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Readex+Pro:wght@160..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #0B0B0B;
  min-height: 100vh;
  font-family: 'Readex Pro', sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

body canvas {
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
}

.container {
  text-align: center;
  padding: 64px 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}

.profile-pic {
  max-width: 96px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 4px;
  pointer-events: none;
  -webkit-user-drag: none;
}

h1 {
  color: white;
  font-size: 36px;
  margin: 0 0 32px 0;
  font-weight: 700;
}

#links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
  max-width: 650px;
  margin: 0 auto;
}

#links.hide {
  display: none;
}

.link-button {
  background-color: #151515;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #3B3B3B;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
  max-width: 650px;
  box-sizing: border-box;
}

.link-button:hover {
  transform: scale(1.02);
  background-color: #282828;
  border-color: #696969;
}

.link-button:active {
  transform: scale(0.98);
}

#socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 32px 0;
  
  a {
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: center;
    vertical-align: middle;
  }

  img {
    width: 64px;
    transition: transform 0.2s ease;
    object-fit: contain;

    &:hover {
      transform: scale(1.5);
    }
  }
}

#info {

  display: none;
  background-color: #050505;
  border: 1px solid #3B3B3B;
  color: #ddd;
  text-align: left;
  padding: 15px;
  
  &.shown {
    display: block;
  }

  h3 {
    padding: 0;
    margin: 0;
  }

  hr {
    border-color: #151515;
    border-style: solid;
  }
  
  .flex {
    align-items: center;
  }

  #description {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #aaa;
    margin-bottom: 16px;
  }

  a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    background-color: #151515;
    border-radius: 10px;
    padding: 10px 20px;

    &:hover {
      background-color: #282828;
      font-weight: bold;
    }
  }
}

.flex {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 680px) {
  .container {
    padding: 48px 16px;
  }
  
  #links {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  #socials {
    flex-flow: wrap;
  }

  .container {
    padding: 40px 12px;
  }
  
  .profile-pic {
    width: 80px;
    height: 80px;
  }
  
  h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .link-button {
    font-size: 16px;
    padding: 14px 20px;
  }
  
  #links {
    gap: 14px;
    padding: 8px;
  }
}

* {
  -webkit-tap-highlight-color: transparent;
}