html, body {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #f1f2f3;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    color: #333;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}

.nodecontainer {
    position: relative;
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg,  #7d7e7d 0%,#0e0e0e 100%);
    color: white;
    font-size: 14px;
    box-shadow: 0px 24px 12px -16px rgba(0,0,0,0.5);
}

.nodecontainer-cnt {
    padding: 16px;
}

.strips {
    position: relative;
    width: 100%;
    opacity: .2;
    height: 12px;
    background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 50%, #ffffff 50%, #ffffff 75%, transparent 75%, transparent 100%);
    background-size: 36.77px 36.77px;
    animation: strips linear 3s infinite;
}

@keyframes strips {
    0% {background-position: 0px 0px;}
    100% {background-position: 36.77px 0px;}
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 32px;
    filter: invert(1);
    mix-blend-mode: luminosity;
}

.container {
    position: relative;
    float: left;
    width: 100%;
    padding: 2em;
}