.experience-background {
    height: 100vh;
    width: 100vw;
    background-image: url('/experiencebackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.experience-background h1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding-top: 100px;
    text-align: center;
    z-index: 4;
    font-size: 2em;
}

.experience-background p {
    font-size: 0.6em
}

.experience-content {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-top: 150px;
}

.accordion-section {
    margin-bottom: 1rem;
}

.accordion-header {
    cursor: pointer;
    font-size: 1.2rem;
    margin: 0;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #B69AF9;
}

.accordion-content {
    padding-left: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}