/* webpage by nicojpeg - https://nicojpeg.tech */

@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --size: 20px;
}

body {
  display: grid;
  place-items: center;
  min-height: 100vh;
  background: hsl(0 0% 6%);
  
  font-family: 'Funnel Display', sans-serif;
}

hr {
  margin-top: 20px;
  margin-bottom: 30px;
  border: 0;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(to right, #949494, #696969);
}

.card {
  max-width: 500px;
  position: relative;

  backdrop-filter: blur(2px);
  background: rgba(173, 173, 173, 0.1);
  color: #fff;
  padding: 30px;
  border-radius: 50px;
  margin: 10px;
  margin-top: 30px;
  margin-bottom: 50px;

  font-size: 30px;
}

b {
  font-weight: 900;
  font-size: 28px;
}

.el {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 180deg at 50% 70%,hsla(0,0%,98%,1) 0deg,#eec32d 72.0000010728836deg,#ec4b4b 144.0000021457672deg,#709ab9 216.00000858306885deg,#4dffbf 288.0000042915344deg,hsla(0,0%,98%,1) 1turn);
  mask:
    radial-gradient(circle at 50% 50%, white 2px, transparent 2.5px) 50% 50% / var(--size) var(--size),
    url("https://assets.codepen.io/605876/noise-mask.png") 256px 50% / 256px 256px;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  animation: flicker 20s infinite linear;
  z-index: -1;

  user-select: none;
}

.nav {
  margin-top: 20px;
  background-color: #0e0e0e;
  border-radius: 50px;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  padding: 5px;
  transition: 0.3s ease;
  user-select: none;
  cursor: pointer;
}

.nav a:hover {
  color: #8d8d8d;
  transition: 0.3s ease;
  transform: scale(1.2);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background-color: #0e0e0e;
  padding: 10px;
  border-radius: 50px;
}

.header a {
  color: #fff;
  text-decoration: none;
  font-size: 45px;
  transition: 0.3s ease;
  user-select: none;
}

.header a:hover {
  transition: 0.3s ease;
  transform: scale(1.2);
}

.header_pfp {
  border-radius: 50%;
  height: 50px;
  display: flex;
  justify-content: left;
  transform: scale(1.0);
  transition: 0.3s ease;

}

.welcome h1 {
  font-size: 60px;
  text-align: center;
  font-weight: 900;
  margin: 0;
  transition: 0.5s ease;
  &:hover {
    transition: 0.5s ease;
    transform: scale(1.1);
  }
}

.welcome p {
  font-size: 25px;
  text-align: center;
  margin-top: 15px;
  transition: 0.5s ease;
  &:hover {
    transition: 0.5s ease;
    transform: scale(1.1);
  }
}

.welcome h6 {
  font-size: 16px;
  text-align: center;
  color: #dbdbdb;
  margin-bottom: 15px;
  transition: 0.5s ease;
  letter-spacing: 5px;
  &:hover {
    transition: 0.5s ease;
    transform: scale(1.1);
  }
}

.about {
  text-align: center;
  font-size: 25px;
}

.about a {
  color: #fff;
  font-weight: 500;
  padding: 10px;
  transition: 0.3s ease;
  &:hover {
    transition: 0.3s ease;
    color: #8d8d8d;
    transform: scale(1.2);
  }
}

.about h3 {
  font-size: 35px;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: 0.5s ease;
  &:hover {
    transition: 0.5s ease;
    transform: scale(1.1);
  }
}

.history {
  text-align: center;
  font-size: 25px;
  padding-top: 20px;
}

.history h3 {
  margin: 0;
  transition: 0.5s ease;
  &:hover {
    transition: 0.5s ease;
    transform: scale(1.1);
  }
}

.history p {
  margin: 0;
  transition: 0.5s ease;
  &:hover {
    transition: 0.5s ease;
    transform: scale(1.1);
  }
}

.history_line {
  width: 3px;
  border-radius: 10px;
  height: 60px;
  background: linear-gradient(to top, #949494, #696969);
  margin: 20px auto;
  transition: 0.5s ease;
  &:hover {
    transition: 0.5s ease;
    transform: scale(1.3);
  }
}

.cards {
  margin-top: 30px;
}

.card_content {
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #0e0e0e;
  border-radius: 40px;
  margin-top: 30px;
}

.card_content h3 {
  font-size: 35px;
  margin: 15px;
  text-align: center;
}

.card_content_info {
  align-items: center;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.card_content_info h6 {
  font-size: 16px;
  letter-spacing: 2px;
  text-align: center;
  color: #999999;
  margin: 0;
}

.card_content_info a {
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  color: #999999;
  margin: 0;
  margin-bottom: 15px;
  margin-top: 15px;
  font-weight: 500;
}

.card_content p {
  font-size: 25px;
  text-align: justify;
}

.card_content img {
  border-radius: 20px;
  width: 100%;
  transition: 0.8s ease;
  &:hover {
    transition: 0.8s ease;
    transform: scale(1.3);
  }
}

.card_content_r {
  justify-content: center;
  align-items: center;
  padding: 25px;
  background: #0e0e0e;
  border-radius: 40px;
  margin-top: 30px;
}

.card_content_r h3 {
  font-size: 35px;
  margin: 15px;
  text-align: center;
  transition: 0.5s ease;
  &:hover {
    transition: 0.5s ease;
    transform: scale(1.1);
  }
}

.card_content_r h6 {
  font-size: 16px;
  text-align: center;
  color: #999999;
  margin: 0;
  margin-bottom: 15px;
  letter-spacing: 2px;
  transition: 0.5s ease;
  &:hover {
    transition: 0.5s ease;
    transform: scale(1.1);
  }
}

.card_content_r a {
  text-decoration: none;
  color: #999999;
  }

.card_content_r p {
  font-size: 25px;
  margin: 0;
  text-align: justify;  
}

.card_content_r img {
  border-radius: 20px;
  width: 10%;
  transform: translateY(5px); /* line written by skibidi tousend. https://tousend.me/ */
}

.footer {
  text-align: center;
  margin-top: 40px;
  transition: 0.5s ease;
  &:hover {
    transition: 0.5s ease;
    transform: scale(1.05);
  }
}

.footer a {
  font-size: 18px;
  color: #999999;
  text-decoration: none;
}

.img_404 {
  width: 100%;
  border-radius: 20px;
  transition: 0.8s ease;
  margin-top: 20px;
  margin-bottom: 20px;
  &:hover {
    transition: 0.8s ease;
    transform: scale(1.1);
  }
}


@keyframes flicker {
  to {
    mask-position: 50% 50%, 0 50%;
  }
}