.skill {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 24px;
}

.skill-icon>svg {
    height: 90px;
}

.skill-content > .skill-title{
    font-family: 'Press Start 2P'; 

    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    text-align: left;
    text-shadow: 4px 4px var(--color-black-first);

    margin: 0 0 16px;
}

@media screen and (max-width: 550px) {
    .skill-content > .skill-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 460px) {
    .skill-content > .skill-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .skill-icon>svg {
        height: 60px;
    }
}