@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single:wght@100..900&display=swap');


/*#0527fc #6927fc*/

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Courier New', monospace;
  
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  //background-image: url(./background.jpg);
  //background-position: center;
  //background-size: cover;

  height: 100%;
  overflow: hidden;
}

#box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 20px;

  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 4px 4px 5px hsl(0deg 0% 0% / 0.4);

  width: 400px;
  height: 500px;
}


#top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.name {
  display: flex;
  font-weight: 700;
  gap: 8px;
  background-color: #ffffff00;
  

  text-shadow: 0 0 4px white, 0 0 8px white;
  
  padding-bottom: 6px;
  align-items: center;
  color: white;
  animation: blinkingUnderline ease-in-out 4s infinite alternate;
}

.github-icon {
  height: 100%;
  filter: brightness(0) invert(1);
  
}

.linkedin-icon {
  height: 100%;
  fitler: brightness(0) invert(1);
}

.links {
  display: flex;
  justify-content: left;
  flex-direction: row;
  gap: 24px;
}

.link {
  background-color: #ffffff44;
  padding: 8px;
  color: black;
  border-radius: 8px;
  box-shadow: 4px 4px 5px hsl(0deg 0% 0% / 0.4);
  color: white;
  font-weight: 900;
  transition: transform 0.25s ease;
  height: 40px;
  width: 40px;
}

.link:hover {
  transform: translate(-2px, -2px);
}

.bitcount-prop-single {
  font-family: "Bitcount Prop Single", monospace;
  color: white;
  padding: 12px;
  background-color: #ffffff44;
  border-radius: 8px;

  box-shadow: 4px 4px 5px hsl(0deg 0% 0% / 0.4);
}

@keyframes buttonPop {
  from {
    transform: translate(0, -0);
    box-shadow: 4px 4px 5px hsl(0deg 0% 0% / 0.4);

  }
  to {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 5px hsl(0deg 0% 0% / 0.4);
  }
}

@keyframes blinkingUnderline {
  from {
    border-bottom: solid 2px transparent;
  }
  to {
    border-bottom: solid 2px white;
  }
}
