h1 {
  font-family: monospace;
  font-size: 48px;
  color: var(--color-text);
}

h3 {
  font-family: monospace;
  font-size: 24px;
  text-align: center;
  color: var(--color-text);
}

.success-message {
  display: none;
  margin-bottom: 16px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  color: #4caf50;
  border: 1px solid #4caf50;
  background: rgba(76, 175, 80, 0.08);
}

#sent:target {
  display: block;
  animation: fadeOut 5s forwards;
}

@keyframes fadeOut {
  0%, 70% { opacity: 1; }
  100% { opacity: 0; }
}

.contact-form {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: rgba(13, 17, 23, 0.38);
  max-width: 600px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.contact-form label {
  font-size: 16px;
  font-weight: 400;
  padding-left: 2px;
  color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 12px;
  padding: 10px;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(13, 17, 23, 0.28);
  backdrop-filter: blur(20px);
  color: var(--color-text);
  font-size: 14px;
  outline: none;
  resize: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
}

.contact-form button {
  margin-top: 6px;
  align-self: center;
  font-size: 12px;
}


.social-links {
  text-align: center;
  margin-top: 22px;
}


.social-icons {
  margin-top: 12px;
}

.social-icons a {
  display: inline-flex;
  padding: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  transition: 0.2s;
}

.social-icons a:hover {
  background: #fff;
  box-shadow: 0 0 10px #fff;
  color: #333;
}


.contact-info {
  text-align: left;
}

.contact-info p {
  margin-top: 12px;
  font-size: 14px;
}

.contact-info a {
  color: rgb(117, 156, 214);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: rgb(35, 77, 140);
}