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

.node-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    height: 0;
    width: 40px;
    border: 2.5px dashed #000;
    transform: rotate(90deg) translateX(-62%);
    bottom: 140px;
}

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

.node-card .logo {
    display: flex;
    align-items: center;
    height: 140px;
    padding-left: 20px;
    padding-right: 20px;
    border: 5px solid #000;
    background-color: #549F93
}

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

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