body {
    overflow: hidden;
}

.okvir {
    background-color: #222;
    background-image: radial-gradient(ellipse, #222, #0e0e0e);
}


svg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#skull path {
    fill: rgba(234, 97, 83, 0.8);
}

#path {
    fill: none;
}

.c {
    position: absolute;
    top: 2em;
    left: 2em;
    font-size: 11px;
    font-family: Monaco, monospace;
    color: #3c3c3c;
}

.c p {
    margin: 0 0 .5em;
}

.c a {
    position: relative;
    display: inline-block;
    padding: 0 .2em;
    text-decoration: none;
    color: rgba(234, 97, 83, 0.6);
}

.c a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: rgba(234, 97, 83, 0.6);
    transition-property: width, left;
    transition-duration: 400ms;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.c a:hover:before {
    width: 100%;
    left: 0;
}
