.skills{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: var(--bg-gradient);
}

.skills .tags {
    display: grid;
    grid-template-columns: auto auto auto;
}

.skills .tag{
    text-align: center;
    background-color: lightsteelblue;
    border-radius: 1rem;
    margin: 1rem;
    font-size: x-large;
    color: var(--primary-color);
    font-weight: bold;
    padding: 1rem;
    transition: ease-in-out 100ms;
}
.skills .tag:hover{
    transform: scale(1.1);
    filter: brightness(1.1);
}
