@import url("https://fonts.googleapis.com/css2?family=Poly:ital@0;1&family=Poppins:ital,wght@0,400;0,600;1,900&family=Yellowtail&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* 
  font-family: 'Poly', serif;
  font-family: 'Yellowtail', cursive;
  */
  font-family: "Poppins", sans-serif;
  color: white;
  transition: 0.1s;
}

:root {
  --primary-color: #185ee0;
  --secondary-color: #e6eef9;
}

body,
html {
  width: 100%;
  background-color: black;
}

.c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ch {
  display: flex;
  justify-content: center;
}

.cv {
  display: flex;
  align-items: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  backdrop-filter: blur(50px);
  z-index: 99;
}

.logo img {
  width: 50px;
}

.logo h1 {
  font-family: "Yellowtail", cursive;
  font-size: 40px;
  font-weight: 500;
}

.wrap {
  width: 100%;
}

.inner {
  padding: 120px 0;
  width: 750px;
  margin: 0 auto;
}

.card {
  border: 1px solid black;
  border-bottom: 1px solid rgba(128, 128, 128, 0.19);
  padding: 30px 20px;
  z-index: 90 !important;
  position: relative;
}

.index h1 {
  color: #d1d1d1;
  font-family: Poppins;
  font-size: 40px;
  font-style: italic;
  font-weight: 900;
  line-height: normal;
}

.content {
  margin: 0 30px;
}

.content h1 {
  color: #fff;
  font-family: Poppins;
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 5px;
}

.content p {
  color: #7d7d7d;
  font-family: Poly;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.icon img {
  width: 80px;
  border-radius: 10px;
}

.card:hover {
  transform: scale(1.1);
  z-index: 100;
  background-color: #111111;
  border: 1px solid rgba(128, 128, 128, 0.19);
  border-radius: 10px;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

.card:hover .github-icon {
  display: flex;
}

.github-icon {
  position: absolute;
  bottom: -20px;
  left: 40px;
  height: 50px;
  width: 50px;
  background-color: #111111;
  border-radius: 50%;
  font-size: 25px;
  border: 1px solid rgba(128, 128, 128, 0.19);
  display: none;
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.github-icon:hover {
  transform: scale(1.1) rotate(360deg);
}

.icon {
  position: relative;
  cursor: pointer;
}

.logo h1 {
  transition: all 0.5s ease;
  cursor: pointer;
}

.logo h1:hover {
  animation: textChange 3s infinite;
}

a {
  text-decoration: none !important;
}

@keyframes textChange {
  0% {
    content: "hxr";
  }
  16.67% {
    content: "har";
  }
  33.33% {
    content: "harry";
  }
  50% {
    content: "haarry";
  }
  66.67% {
    content: "haaarry";
  }
  83.33% {
    content: "haaaarry";
  }
  100% {
    content: "haaaarry";
  }
}

.tab-wrap {
  position: fixed;
  left: 0;
  bottom: 50px;
  z-index: 99;
  width: 100%;
  pointer-events: none;
}

.tabs {
  pointer-events: all;
  z-index: 100 !important;
  background-color: #4b4a4a5e;
  padding: 5px;
  border-radius: 40px;
  backdrop-filter: blur(50px);
  border: 1px solid rgba(255, 235, 205, 0.082);
}

.tab {
  padding: 8px 10px;
  min-width: 80px;
  cursor: pointer;
  font-size: 16px;
}
.a {
  background-color: rgba(7, 7, 7, 0.568);
  border-radius: 40px;
}
