body {
    font-family: Arial, sans-serif;
    background-color: #6f156e;
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.logo {
    height: 160px;
    width:auto;
    max-width: 100%;
    position: relative;
    animation-duration: 1.5s;
    animation-fill-mode: both;

}


.introtext {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
}

body::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    z-index: -99;
}

main {
    padding-bottom: 100px;
    position: relative;
}

footer {
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 0.8rem;
}

.projectlinks a {
    color: #ffffff;
    display:inline-block;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 10px;
    background-color: rgba(0, 0, 0, 0.4);
    padding:10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.projectlinks a:hover {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 1);
}

canvas {
    display: inline-block;
    position: absolute;

}

.bg-purple-text-vishelper {
    background-color: rgba(111, 21, 110, 0.9);
}



/* Glitch Effect Keyframes */
@keyframes leftToRightGlitchEffect {
    2%, 6% {
        transform: translate(3px, 0);

    }
    4% {
        transform: translate(-3px, 0);

    }
    8% {
        transform: translate(2px, 0);

    }
    10%, 54% {
        transform: translate(-2px, 0);

    }
    52% {
        transform: translate(3px, 0);

    }
    56%, 58% {
        transform: translate(-3px, 0);

    }
    60% {
        transform: translate(2px, 0);

    }
}