h2 {
    text-align: center;
}

.php-panel {
    display: flex;
    width: 100%;
    gap: 1rem;

    .service {
        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 1rem;

        background-color: var(--color-accent-1);
        flex-grow: 1;

        .name {
            font-weight: 700;
            font-size: 1.5rem;
            text-align: center;
        }

        img {
            height: 60%;
            width: 60%;
            margin-bottom: 1rem;
            content: url("https://upload.wikimedia.org/wikipedia/commons/4/4f/PhpMyAdmin_logo.svg");
        }
    }
}

