#animationCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

* {
    font-family: sans-serif;
}


/* scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    transition: all 0.4s ease;
}

::-webkit-scrollbar-thumb {
    background: #696969;
    transition: all 0.4s ease;

}

::-webkit-scrollbar-thumb:hover {
    background: #555;
    transition: all 0.4s ease;
}


#menu-toggle {
    position: fixed;
    top: 10px;
    left: 250px;
    padding: 12px 18px;
    background-color: #111;
    color: white;
    border: none;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);

    transition: 0.3s ease-in-out;
}

#menu-toggle:hover {
    transform: scale(1.1);

    transition: 0.3s ease-in-out;
}

#apply-btn {
    padding: 8px;
    padding-left: 90px;
    padding-right: 90px;
    margin-bottom: 35px;
    font-weight: bold;
    background-color: #111;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid rgb(31, 31, 31);

    transition: all 0.1s ease;
}

#apply-btn:hover {
    background-color: #070505;
    transform: scale(1.05);

    transition: all 0.1s ease;
}

#apply-btn:active {
    background-color: #424242;

    transition: all 0.1s ease;
}

#menu-toggle.hidden {
    opacity: 0;
}

body.cursor-hidden {
    cursor: none;
}

#menu-toggle:hover {
    cursor: pointer;
}

#slide-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #111;
    color: white;
    transition: 0.3s ease-in-out;
    padding-top: 20px;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);

    overflow-y: auto;
    overflow-x: hidden;
}

#slide-menu ul {
    list-style-type: none;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 0px;
}

#slide-menu ul li {
    padding-left: 5px;
}

#slide-menu ul li input {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: bold;
    font-size: 100%;
    display: block;

    margin-top: 0px;
    border: 2px solid rgb(109, 109, 109);
    height: 30px;
    width: 200px;
}

#slide-menu ul li p {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
    font-size: 100%;
    display: block;

    margin-top: 0px;
}

#info {
    bottom: 25px;
    left: 3px;
    margin-top: 0px;
    margin-left: 4px;
    margin-right: 4px;
}

#info h3 {
    margin-top: 0px;
    margin-bottom: 10px;
}

#info h4 {
    font-weight: bold;
    font-size: 17px;
    margin-top: 12px;
    margin-bottom: 12px;
}

#info p {
    margin: 0px;
    margin-top: 12px;
    margin-bottom: 12px;
}

#github_link {
    text-decoration: none;
    font-weight: bold;
    color: rgb(197, 197, 197);
}