* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Times New Roman", serif;
}

body {
    height: 100vh;
    overflow: hidden;
    background: url("assets/bg.GIF");
    color: #ffffff;
}

.top-nav {
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.top-nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 6px;
}

.top-nav span {
    color: #ff0000;
}

.center-logo {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
}

.center-logo img {
    max-width: 600px;
    width: 80vw;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

.platform-section {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.platform-section.personal {
    top: 9%;
}

.platform-section.group {
    top: 60%;
}

.platform-logo {
    max-width: 436px;
    width: 60vw;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

.platform-links {
    display: flex;
    justify-content: center;
}

.platform-links img {
    height: 104px;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        filter 0.15s ease;
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.6));
}

.center-logo img {
    max-width: 600px;
    width: 80vw;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}
.badge-marquee {
    position: absolute;
    top: 90%;
    width: 100%;
    overflow: hidden;
    transform: translateY(-50%);
    pointer-events: none;
}

.badge-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.badge-track img {
    height: 32px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.floating-text {
    position: absolute;
    font-size: 20px;
    white-space: nowrap;
    z-index: 10;
}

a:link,
a:visited,
a:hover,
a:active {
    color: #ffffff;
}

/* Footer */
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
}
