.contact-form-container {
    background-color: #1a1a1a; /* Slightly lighter black */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 100px;
    transition: 1s;
    animation: stubilili 1s;
  }
  
h2 {
      font-family: "stubi",arial;
      color: transparent;
      font-size: 40px;
      background-image: url("../img/line.png");
      -webkit-text-stroke: 1px black;
      -webkit-background-clip: text;
      background-position: 0 0;
      animation: stubi 20s linear infinite;
      margin-bottom: 0;
  }

  p{
    text-align: center;
  }
  
  /* Form Styling */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-group label {
    font-size: 0.9rem;
    color: #cccccc;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: black;
    color: white;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #0078ff;
    box-shadow: 0 0 5px #0078ff;
  }
  
  /* Submit Button */
  .submit-btn {
    background-color: #0078ff;
    color: white;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #005bb5;
  }
  
  /* Responsive Design */
  @media (max-width: 480px) {
    .contact-form-container {
      padding: 20px;
    }
  }
  
  textarea{
    resize: none;
}

@keyframes stubilili{
  from{
      opacity: 0;
      transform: translateY(50px);
  }
  to{
      opacity: 1;
      transform: translateY(0px);
  }
}