/*
        Website Color Scheme:
        #0E0B16 - Background
        #A239CA - Pink Accents
        #4717F6 - Purple Main
        #E7DFDD - Foreground
*/

body {
    font-family: Arial Narrow, sans-serif;
    background-color: #0E0B16;
}

/* Text Colors (and Default Settings) */
h1 {
    color: #E7DFDD;  
}
h2 {
    color: #E7DFDD;  
}
h3 {
    color: #E7DFDD;  
}
p {
    color: #E7DFDD;  
}
a {
    color: #E7DFDD;
}

/* Text Classes */
.center {
    text-align: center;
}
.bold {
    font-weight: 900;
}
.mono {
    font-family: Courier, monospace;
}
.ul {
    text-decoration-line: underline;
}
/* Color Classes */
.pinkaccent {
    color: #A239CA;
}
.purplemain {
    color: #4717F6;
}

/* Background Cards */
.bg0 {
    position: absolute;
    top: 50;
    bottom: 0;
    left: 0;
    right: 0;
}
.bg01 {
    margin:0 auto;
    text-align: center;
}
.cbgf {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    -webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    -webkit-mask-image:-webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}
.bg1 {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    float: left;
    margin-left: 10%;
    margin-top: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}
.bg2 {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    position: absolute;
    float: left;
    margin-left: 30%;
    margin-top: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

/* Buttons */
.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #E7DFDD;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}
.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}
.glow-on-hover:active {
    color: #000
}
.glow-on-hover:active:after {
    background: transparent;
}
.glow-on-hover:hover:before {
    opacity: 1;
}
.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Navigation-Bar */
.navbar {
    background-color: #0E0B16;
    overflow: hidden;
}
.navbar a {
    float: left;
    color: #E7DFDD;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
.navbar a:hover {
    background-color: #E7DFDD;
    color: #0E0B16;
}
.navbar a.active {
    background-color: #4717F6;
    color: #E7DFDD;
}
.topleft{
    font-weight: 900;
}