/* CSS reset */
* { 
    margin:0;
    padding:0;
    box-sizing: border-box;
}

a, a:visited, a:active {
    text-decoration: none;
    color: #446380;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    /* top: -100px; */
}

body {
    background-color: rgba(196, 228, 255, 0.164);
    font-family: sans-serif;
    position: relative;
}

.logo {
    display: inline-block;
    position: relative;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.2);;
    /* box-shadow: -1px 0px 2px 1px rgba(0, 0, 0, 0.2);
    animation-name: unruhig;
    animation-duration: 5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite; */
}

/* @keyframes unruhig {
    0% {
        left: 10px;
        box-shadow: -1px 0px 2px 1px rgba(0, 0, 0, 0.2);
    }
    10% {
        left: 20px;
        box-shadow: -4px 4px 5px 1px rgba(0, 0, 0, 0.082);
    }
    20% {
        left: 10px;
        box-shadow: -1px 0px 2px 1px rgba(0, 0, 0, 0.2);
    }
    30% {
        left: 20px;
        box-shadow: -4px 4px 5px 1px rgba(0, 0, 0, 0.082);
    }
    40% {
        left: 10px;
        box-shadow: -1px 0px 2px 1px rgba(0, 0, 0, 0.2);
    }
    50% {
        left: 20px;
        box-shadow: -4px 4px 5px 1px rgba(0, 0, 0, 0.082);
    }
    60% {
        left: 10px;
        box-shadow: -1px 0px 2px 1px rgba(0, 0, 0, 0.2);
    }
} */

footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
}

footer > p {
 display: block;
 line-height: 2rem;   
}

footer > p > a {
    font-size: 1rem;
    color: #1b1b1b;
}