
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    background-color: black;
}

#trollface-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.trollface {
    position: absolute;
    width: 100px;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.1s ease-out;
    animation: fade 3s ease-in-out, bounce 3s ease-in-out;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes bounce {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

h1 {
    z-index: 999;
}