@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jet.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'JetBrains Mono', monospace;
  background: hwb(0 100% 0%);
  color: rgb(24, 23, 23);
}

html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font: normal 75% 'JetBrains Mono', monospace;
  overflow: hidden;
}
a {
  text-decoration: none;
}
#particles-js canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

#particles-js {
  width: 50vw;
  height: 50vh;
  background-color: linear-gradient(180deg, #000000 0%, #f5f7fa 100%);
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: center;
  top: 0;
  left: 0;
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.profile-pic {
  background-image: url('../images/pic.jpg');
  background-size: cover;
  background-position: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  pointer-events: none;
  user-select: none;
}

h1 {
  font-size: 2.5rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

.description {
  font-size: 1.2rem;
  font-style: italic;
  color: #2c2a2a;
  margin-top: 20px;
  margin-bottom: 20px;
}

.social-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
  margin-right: 10px;
}

.social-icon:last-child {
  margin-right: 10;
}

.social-icon:hover {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(50%) sepia(90%) saturate(600%) hue-rotate(-10deg);
}
.content-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.text-content {
  max-width: 400px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 300px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
  resize: vertical;
}

.contact-form button {
  background: orange;
  border: none;
  padding: 10px;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #e07b00;
}

.back-button {
  margin-top: 15px;
  background: transparent;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 6px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s;
}
.back-button:hover {
  border-color: orange;
  color: orange;
}
.status-message {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 2px;
}
.contact-form :disabled {
  opacity: .6;
  cursor: not-allowed;
}
.contact-form ::placeholder {
  font-style: italic;
}

