.title-container {
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 16px 24px;
    max-width: 100%;
    width: 100%;
    font-family: 'Rubik', sans-serif;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 2rem;
}

.title {
    font-size: 1.7rem;
    letter-spacing: 2px;
    font-weight: 600;
    
}

.title-button {
    background-color: #1e1e1e;
    color: #ffffff;
    letter-spacing: 2px;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.title-button:hover {
    background-color: #2a2a2a;
}

@media (max-width: 768px) {
    .title-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .title {
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
    }

    .title-button {
        font-size: 1rem;
        width: 100%;
        padding: 0.8rem 1.2rem;
        justify-content: center;
        box-sizing: border-box;
    }
}