GreenGolem1
:root {
    --timeScale: 1;
    --timeDelay: 0s;
}
 
/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > .bottom-box { box-shadow: none!important; }
.anom-bar > .bottom-box::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 0.5rem;
    background-color: rgb(var(--black-monochrome, 12, 12, 12));
    transform: translateY(-0.74rem);
}
 
/* DIVIDER */
.anom-bar > .bottom-box::before {
    animation-name: divider;
    animation-duration: calc(0.74s * var(--timeScale));
    animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
}
 
/* CLASSIFIED LEVEL BARS */
div.top-center-box  > * {
    animation-name: bar;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); }
 
/* TOP TEXT */
div.top-left-box, div.top-right-box {
    clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%);
}
 
div.top-left-box > *, div.top-right-box > * {
    position: relative;
    animation-name: bottomup;
    animation-duration: calc(0.65s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* CONTAINMENT, DISRUPTION, RISK CLASSES */
div.text-part > * {
    clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-name: expand2;
    animation-duration: calc(0.5s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.text-part > :nth-child(1) {
    animation-name: expand1;
}
div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); }
 
div.main-class::before, div.main-class::after {
    animation-name: iconslide;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 /* BOTTOM TEXT */
div.main-class > *,  div.disrupt-class > *, div.risk-class > * {
    animation-name: flowIn;
    animation-duration: calc(0.42s * var(--timeScale));
    animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* DIAMOND */
div.arrows {
    animation-name: arrowspin;
    animation-duration: calc(0.7s * var(--timeScale));
    animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.quadrants > * {
    animation-name: fade;
    animation-duration: calc(0.3s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.top-icon, div.right-icon, div.left-icon, div.bottom-icon {
    animation-name: nodegrow;
    animation-duration: calc(0.4s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.diamond-part {
    clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%);
    animation-name: diamondBorder;
    animation-duration: calc(0.8s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
    will-change: box-shadow;
}
 
/* MOBILE QUERY */
@media (max-width: 480px ) {
    .anom-bar > .bottom-box::before {
        display:none;
    }
    .anom-bar > .bottom-box {
        box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important;
    }
    div.top-center-box  > * {
        animation-name: bar-mobile;
        animation-duration: calc(0.9s * var(--timeScale));
    }
    div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
 
}
/*--- Motion Accessibility ---*/
@media (prefers-reduced-motion) {
    div.anom-bar-container { --timeScale: 0; }
}
 
/*-------------------------*/
 
@keyframes divider {
    from { max-width: 0%;  }
    to { max-width: 100%; }
}
 
@keyframes bar {
    from { max-width: 0%; }
    to { max-width: 100%; }
}
@keyframes bar-mobile {
    from { max-height: 0%; }
    to { max-height: 100%; }
}
 
@keyframes bottomup {
    from { top: 100px; }
    to { top: 0; }
}
 
@keyframes expand1 {
    from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);}
    to { opacity: 1; clip-path: inset(0);}
}
@keyframes iconslide {
    from { opacity: 0; transform: translateX(-5rem);}
    to { opacity: 1; transform: translateX(0);}
}
 
@keyframes expand2 {
    from { opacity: 0; max-width: 1%;}
    to { opacity: 1; max-width: 100%;}
}
@keyframes fade {
    from { opacity: 0;}
    to { opacity: 1;}
}
 
@keyframes flowIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
@keyframes arrowspin {
    from { clip-path: circle(0%); transform: rotate(135deg); }
    to { clip-path: circle(75%); transform: rotate(0deg); }
}
@keyframes nodegrow {
    from { transform: scale(0);}
    to {  transform: scale(1);}
}
@keyframes diamondBorder {
    from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
    to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
}
rating: 0+x




BY ORDER OF THE OVERSEER COUNCIL

The following file is Level 6/XXXX classified. Any attempts to access this file without Level 6/XXXX authorization will be logged, and the personnel responsible terminated.

XXXX





WARNING. MEMETIC KILL AGENTS AHEAD. PERSONNEL WITHOUT PROPER AUTHORIZATION WILL BE KILLED. PROCEED WITH CAUTION.


A5191D15-2EB3-48B6-BB51-05D3D879E115.png
Memetic%20Agent%202

Authorization Complete. Welcome.


Item#: XXXX
Level6
Containment Class:
esoteric
Secondary Class:
apollyon
Disruption Class:
amida
Risk Class:
critical

Anomaly

SCP-XXXX

Special Containment Procedures: There are currently no known means to successfully contain SCP-XXXX, and the threat of an ZK-CLASS: End of Reality event appears to be unstoppable. Investigation into methods of containment of SCP-XXXX remains a top priority.

Information regarding SCP-XXXX is to be kept hidden from public eye by any means necessary, as the time until SCP-XXXX takes effect is dependent on how many people have knowledge of SCP-XXXX’s anomalous properties. Interception and suppression of information regarding SCP-XXXX is to be conducted by a task force of ten members under MTF Omicron-Ω (“Yin Yang”). Task force members and researchers investigating SCP-XXXX are to have any mention of them removed from any record, and all people who knew the person are to be given Class C Amnestics. Number of members of this task force are to be reduced as the event caused by SCP-XXXX approaches. On the event of termination or death of a member of this task force or researchers assigned to SCP-XXXX, all records of that person are to be deleted and removed, and any personnel who knew the person are to be given Class C Amnestics to remove any knowledge of said person, even including members of the O5 Council.

Only a select few are allowed to have knowledge of SCP-XXXX, including the O5 Council, members of MTF Omicron-Ω, and no more than five researchers chosen by members of the O5 Council.

In the event that information regarding SCP-XXXX is leaked throughout members of the foundation, members who gained knowledge of SCP-XXXX through this information leak are to be immediately terminated, and all people who had knowledge of these people are to be given Class C Amnestics, including members of the O5 Council.

All information regarding discovery of SCP-XXXX are to be stricken from record and all people with knowledge of such are to be administered Class C Amnestics. This is purely to prevent the possibility of leaking information of SCP-XXXX

Should information of SCP-XXXX be leaked to the public, Protocol XXXX-XK1 “The Worlds Epilogue” is to be activated.

Description: SCP-XXXX is the official designation given to the andromeda galaxy, following the discovery of its anti-anomalous properties in [DATA EXPUNGED].

SCP-XXXX is “Anti-Anomolous”, meaning that it is normal by our current scientific standards, and that it is not feasible for any anomalies to be created or formed inside of SCP-XXXX. Since there is no feasible way of reaching SCP-XXXX, wether or not causing anomalies to enter will strip them of anomalous properties is unknown.

SCP-XXXX exists as a counterbalance to various anomalies present in the Milky Way galaxy. The balance between SCP-XXXX and the Milky Way galaxy is the very thing that holds our reality together.

It is common public knowledge that SCP-XXXX is moving towards earth, and will eventually collide with the Milky Way galaxy. When that happens, it will cause a ZK-CLASS: End of Reality event, as it will cause our reality to collapse in on itself as the balance between two galaxies is broken. At our current rate, this is estimated to happen in roughly 4.5 billion years. Currently, suppression of information regarding SCP-XXXX is strictly for preventing collision time from increasing.

SCP-XXXX was discovered when [DATA EXPUNGED AT COMMAND OF O5 COUNCIL.]

When a sapient being gains knowledge of the anti-anomalous properties of SCP-XXXX, that individual is to be designated as SCP-XXXX-1. When an individual becomes an SCP-XXXX-1 instance, the speed at which SCP-XXXX moves towards our own galaxy increases. This effect will continue until all knowledge of the SCP-XXXX-1 instance is forgotten or lost, and the individual in question is terminated. It takes a minimum of 1000 SCP-XXXX-1 instances to cause SCP-XXXX to move at maximum speed, so preventing leaks regarding SCP-XXXX have to remain top priority.

Because of the distance from the anomaly, it is incredibly difficult to investigate further into SCP-XXXX along with methods of containing it.


Incident #XXXX-A

Researcher █████████ leaked information regarding SCP-XXXX to five colleagues. All personnel involved are terminated, and all knowledge regarding those individuals were wiped. All further data involving this incident were stricken from all records.


Transcription of Incident #XXXX-B

The following is a transmission received on ██/██/████ at █████. Message is currently believed to have been sent from the andromeda galaxy.

H-hello? Is this thing on? There, I think it is. I only have one shot at this transmission, so let’s make this quick. We both appear to be in quite the predicament. Apparently you all have anomalies and things our own science can’t explain. We don’t have that though. But according to our data, if our galaxies are to collide, it would cause complete mayhem. We aren’t sure how or if it can be stopped. So this is why we are asking this of you. Please do somet-

The Transmission ends.