@font-face {
    font-family: 'ComicSans';
    src: url('/font/Qdbettercomicsans-jEEeG.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

a {
    color: rgb(99, 61, 126);
    font-family: 'ComicSans', sans-serif;
    text-decoration: none;
}

a:visited {
    color: #7c27cb;
}

a:hover {
    color: #bdbdbd;
}

a:active {
    color: #ff0000;
}

body {
    background-color: black;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
}



body::before,
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

body::before {
    background-image: 
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 0.5px, transparent 0.5px),  
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 0.5px, transparent 0.5px),  
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 0.5px, transparent 0.5px),  
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 0.5px, transparent 0.5px),  
        radial-gradient(white 1px, transparent 1px);
    background-size: 
        30px 30px,  
        15px 15px,  
        60px 60px,  
        30px 30px,  
        90px 90px,  
        45px 45px,  
        120px 120px, 
        60px 60px,  
        150px 150px; 
    background-position: 
        0 0,
        7.5px 7.5px,  
        15px 15px,  
        22.5px 22.5px,  
        30px 30px,
        37.5px 37.5px,  
        45px 45px,
        52.5px 52.5px,  
        60px 60px;
    opacity: 0.8;
}

body::after {
    background-image: 
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 0.5px, transparent 0.5px),  
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 0.5px, transparent 0.5px), 
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 0.5px, transparent 0.5px),  
        radial-gradient(white 1px, transparent 1px),
        radial-gradient(white 0.5px, transparent 0.5px),  
        radial-gradient(white 1px, transparent 1px);
    background-size: 
        45px 45px,  
        22.5px 22.5px, 
        90px 90px,  
        45px 45px,  
        135px 135px, 
        67.5px 67.5px, 
        180px 180px, 
        90px 90px,  
        225px 225px; 
    background-position: 
        22.5px 22.5px, 
        11.25px 11.25px, 
        45px 45px,
        22.5px 22.5px, 
        67.5px 67.5px,
        33.75px 33.75px,  
        90px 90px,
        45px 45px, 
        112.5px 112.5px;
    opacity: 0.6;
}

.titlebar {
    background-color: gray;
    height: 30px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.titlebar img {
    transform: scale(0.8);
    transform-origin: center;
    object-fit: contain;
    margin-left: -5px;
}

.titlebar-links {
    padding: 0 6px;
}

.titlebar-links a {
    margin: 0 10px;
}

.title {
    color: rgb(126, 61, 126);
    margin: 0;
    text-align: center;
    font-family: 'ComicSans', sans-serif;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.text-body, .about-body, .gif-body {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background: linear-gradient(90deg, lightblue, pink, white, pink, lightblue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-body {
    top: 80px;
}

.about-title {
    color: rgb(126, 61, 126);
    font-family: 'ComicSans', sans-serif;
    position: absolute;
    top: 120px;
    left: 10px;
    transform: none;
    z-index: 1;
    text-align: left;
}

.about-body {
    top: 160px;
    left: 10px;
    transform: none;
    text-align: left;
}

.about-body p {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.about-body ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.about-body li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 2px;
    line-height: 1.5;
}

.about-body li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: purple;
    font-size: 1.5em;
    top: 50%;
    transform: translateY(-50%);
}

.gif-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    z-index: 2;
}

.seperator {
    margin-right: 6px;
}
