::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@font-face {
    font-family: Cubano;
    src: url('Cubano.ttf');
}

@font-face {
    font-family: SofiaPro;
    src: url('sofiapro-light.otf');
}

body,
h1,
h5 {
    font-family: Cubano;
}

h2,
h3,
h4,
h6 {
    font-family: SofiaPro
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth;
    background: radial-gradient(#2c2c2c 4px, transparent 5px);
    background-size: 50px 50px;
    background-color: #232323;
    width: 100%;
    background-attachment: fixed;
}

h1 {
    font-size: 72px;
    background: linear-gradient(60deg, #FDFBFB, #64cbff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h5 {
    margin: 0px;
    letter-spacing: 1px;
}

h4 {
    color: white;
    margin: 0px;
    padding: 10px;
    letter-spacing: 1px;
}

a {
    color: inherit;
    text-decoration: inherit;
}

.without-connector {
    margin-left: 12px;
    padding: 6px 0px;
}

.with-connector {
    margin-left: 12px;
    position: relative;
    bottom: 6px;
}

.content {
    max-width: 960px;
    margin: auto;
    padding: 10px;
    text-align: center;
}

.extra-space {
    margin-top: 100px;
    margin-bottom: 100px;
}

.node {
    max-width: 500px;
    margin: auto;
    box-shadow: 0px 4px 12px black;
    border-radius: 12px;
}

.node-header {
    text-align: left;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.red {
    background-color: lightcoral;
}

.green {
    background-color: lightgreen;
}

.blue {
    background-color: lightblue;
}

.golden {
    background-color: lightgoldenrodyellow;
}

.orange {
    background-color: lightsalmon;
}

.node-body {
    background-color: #404040;
    padding-top: 8px;
}

.node-footer {
    height: 12px;
    background-color: #404040;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: relative;
}

.node-top-connector {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 12px;
    margin: auto;
    position: relative;
    top: -6px;
}

.node-bottom-connector {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    margin: auto;
    position: relative;
    top: 6px;
}

.vertical-line {
    width: 1px;
    height: 100px;
    margin: auto;
}

.red-to-white {
    background: linear-gradient(60deg, #FDFBFB, lightcoral);
}

.green-to-white {
    background: linear-gradient(60deg, #FDFBFB, lightgreen);
}

.blue-to-white {
    background: linear-gradient(60deg, #FDFBFB, lightblue);
}

.golden-to-white {
    background: linear-gradient(60deg, #FDFBFB, lightgoldenrodyellow);
}

.orange-to-white {
    background: linear-gradient(60deg, #FDFBFB, lightsalmon);
}

.separation {
    width: 5px;
    height: 5px;
    margin: 5px auto;
    background-color: rgb(190, 190, 190);
    border-radius: 12px;
}

.rectangle-button {
    background-color: darkgray;
    margin: auto;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s ease-out;
}

.rectangle-button:hover {
    background-color: rgb(146, 145, 145);
    transition: all 0.2s ease-in;
}

.simple-link {
    color: white;
    transition: all 0.2s ease-out;
}

.simple-link:hover {
    color: rgb(192, 192, 192);
    transition: all 0.2s ease-in;
}