.centered-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-section {
    display:flex;
    margin: 32px;
    max-width: 100vw;
}

.tech-section .label {
    color: black;
    font-size:28px;
    margin-right: 32px;
    width: 200px;
    align-items: center;
}

.tech-section .icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    font-size: 52px;
    padding: 16px;
}

.tech-section .icons i {
    background-color: whitesmoke;
    padding: 16px;
    border-radius: 8px;
}

.tech-section .icons img {
    background-color: whitesmoke;
    padding: 16px;
    border-radius: 8px;
}

img, i {
  vertical-align: middle;
}

@media(prefers-color-scheme: dark) {
    .tech-section .label {
        color: white;
    }
}

@media(max-width:400px) {
    .tech-grid {
        flex-direction: column;
    }
    .tech-section {
        flex-direction: column;
    }
    .tech-section .label {
        margin-bottom: 16px;
    }
}