:root {
    --primary: #22bbee;
    --secondary: #f5f5f5;
    --third: #ee22bb;
    --background: black;
}

body {
    background-color: var(--background);
    color: var(--secondary);
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
    height: 100%;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

main {
    margin-top: 30vh;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 0.4rem;
}

#heroSignature {
    margin-top: 2rem;
}

#signature {
    width: 1000px;
    max-width: 75%;
    transition: opacity 2s ease-in-out;
}

#felkrupath {
    stroke-dasharray: 1233.787109375;
    stroke-dashoffset: 1233.787109375;
    animation: sign 4s ease-in;
    animation-fill-mode: forwards;
}

#copyright {
    display: none;
    position: fixed;
    bottom: 0;
    padding: 1rem;
    text-align: center;
}	

@keyframes sign {
    to {
        stroke-dashoffset: 0;
    }
}
