#experience {
  position: relative;
  padding-bottom: 2rem; 
  }
  
  .text{
    margin-bottom: 4rem;
  }

  .title{
    margin-top: 1rem;
  }

  .experience-section .subtitle {
    margin-top: 2rem;
    color: #ff4500;
    text-align: center;
  }

  .experience-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .experience-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid #f5a623;
    padding: 1.5rem;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
  }
  
  .experience-title {
    font-family: 'Audiowide', sans-serif;
    color: #ff4500;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .experience-duration {
    font-family: 'Audiowide', sans-serif;
    color: #f5a623;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  @media screen and (max-width: 768px) {
    .title{
      margin-top: 0;
    }

    .experience-duration {
      font-size: 0.9rem; 
    }
  
    .experience-title{
      font-size: 1.3rem; 
    }
  }