* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Vazirmatn', sans-serif;
  background: #070707;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #070707;
  z-index: 0;
}

body > *:not(#particles-js) {
  position: relative;
  z-index: 1;
}

.logo {
  width: 80px;
  height: 80px;
  margin:  0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(10deg);
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
}

p {
  font-size: 1rem;
  color: #eee;
  max-width: 450px;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: right;
}

.buTTons {
  margin: 0 0 32px 0;
}

.buTTons .TiTle {
  text-align: right;
  display: block;
  max-width: 256px;
  margin: 0 auto 22px auto;
  font-weight: bold;
  font-size: 0.9rem;
}

.bTn {
  padding: 8px 12px 4px 12px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  background: #fff;
  transition: all 0.3s ease;
  text-align: center;
  direction: ltr;
  margin: 0 0 0 8px;
}

.bTn:hover {
  background: #000;
  color: #fff;
}

.Tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 256px;
  justify-content: right;
  margin: 0 0 32px 0;
}

.Tags a {
  text-decoration: none;
  padding: 2px 2px;
  color: #fff;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.3s forwards;
  font-size: 0.8rem;
}

.Tags a:nth-child(1) { animation-delay: 0.1s; }
.Tags a:nth-child(2) { animation-delay: 0.2s; }
.Tags a:nth-child(3) { animation-delay: 0.3s; }
.Tags a:nth-child(4) { animation-delay: 0.4s; }
.Tags a:nth-child(5) { animation-delay: 0.5s; }
.Tags a:nth-child(6) { animation-delay: 0.6s; }
.Tags a:nth-child(7) { animation-delay: 0.7s; }
.Tags a:nth-child(8) { animation-delay: 0.8s; }
.Tags a:nth-child(9) { animation-delay: 0.9s; }
.Tags a:nth-child(10) { animation-delay: 1s; }
.Tags a:nth-child(11) { animation-delay: 1.1s; }
.Tags a:nth-child(12) { animation-delay: 1.2s; }
.Tags a:nth-child(13) { animation-delay: 1.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  font-size: 0.8rem;
  color: #666;
  margin-top: auto;
}

footer a {
  color: #666;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.resume {
  font-size: 0.9rem;
  color: #eee;
  min-width: 256px;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: right;
}

.resume a {
  font-size: 0.9rem;
  text-decoration: none;
  padding: 6px 18px 4px 18px;
  display: inline-block;
  margin: 16px 0 0 0;
}

.conTenT
{
  background: rgba(0,0,0,0.1);
  padding: 24px;
  border-radius: 32px;
  box-shadow: 0px 0px 8px #010101;
}