﻿
@media (min-width: 1200px) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 101%;
        height: 101%;
        background-image: url('/Images/galaxy.png');
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
        animation: floater 30s infinite;
    }
}

@media (prefers-reduced-motion: reduce) {
    body::before {
        animation: none !important;
    }
}

@media (max-width: 1199px) {
    body {
        background-image: url('/Images/galaxy.png');
        background-size: auto 100%;
        background-position: 50% 0%;
        background-repeat: no-repeat;
    }
}

@keyframes floater {
    0% {
        transform: translate(0%, 0%);
    }

    50% {
        transform: translate(-1%, -1%);
    }
}

.center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-red {
    color: #F94141 !important;
}

.marqueetitle {
    width: fit-content;
    border-width: 1px;
    border-style: solid;
    border-color: #cccccc;
    border-radius: 0.5rem;
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px 35px 35px 35px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    background-image: linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
}
