p {
    margin: 0px;
    color: white;
    cursor: default;
}

p::selection {
    background-color: rgba(0, 0, 0, 0.2);
}

a::selection {
    background-color: rgba(0, 0, 0, 0.2);
}

body {
    font-family: Roboto, Arial;
    margin: 0px;
    background-color: var(--primary-bg);
}

body::selection {
    background-color: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgb(65, 65, 65);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.background-image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -100;
}

.page-divider {
    height: 6px;
    background-color: white;
    box-shadow: 0px -5px 15px 3px rgba(0, 0, 0, 0.5);
}