.node-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.node-card.-clean .logo {
    padding: 0;
}

.node-card.-unclean .icon {
    max-height: 110px;
}

.node-card .title {
    font-family: 'Press Start 2P', monospace;
    font-size: 25px;
    font-weight: 400;
    color: #C4C4C4;
    margin-bottom: 50px;
}

.node-card::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    height: 40px;
    width: 0px;
    border: 3px dashed #7209B7;
    bottom: 140px;
    transform: translateY(-10px);
}

.node-card .logo {
    display: flex;
    align-items: center;
    height: 140px;
    padding: 0 20px;
    border: 5px solid #000;
    background-color: #7209B7;
}

.node-card.-first .logo {
    background-color: #C14;
}