GreenGolem2
: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
Item#: XXXX
Level1
Containment Class:
esoteric
Secondary Class:
nuntii
Disruption Class:
dark
Risk Class:
caution

Assigned Site


Site-81

Site Director


Dr Karlyle

Research Head


Dr Traverson

Assigned MTF


Psi-7 (“Home Improvement”)


ImageA

Northern-Eastern wall of SCP-XXXX

Special Containment Procedures: The house SCP-XXXX is currently being contained in is currently occupied by Dr. Traverson, who has established a false identity as an IT Support Specialist, with the cover story being that he works from home. All windows of the home have been fitted with shutters. For security, several agents have moved in under the guise of being colleagues.

As of 7/19/2005, authorization was granted for Mobile Task Force Psi-71 to extract SCP-XXXX from the home it was originally in, to be moved to Site-81 so testing could be conducted easier and more efficiently.

As per new containment procedures, SCP-XXXX is to be placed inside of a large containment unit, with two armed guards to be posted outside of the door. SCP-XXXX currently poses no risk of escape, and containment procedures are currently only to restrict unauthorized access. Apart from testing, no personnel are permitted to enter the room alone.

SCP-XXXX-2 is to be kept in a secure storage vault when not in use for testing. A minimum of two armed guards are to be assigned to guarding SCP-XXXX-2.

Description: SCP-XXXX is a windowless room contained inside of a house currently previously located in ██████, Marietta, Georgia. The room is five (5) meters by three (3) meters wide and approximately 2.5 meters tall. The inside is empty, aside from a bed, and a power outlet on the southernmost wall of the room. It was built in 1978, and remained occupied until 2001 until the original owners died. It is unclear wether the original owners didn’t report any unusual activities to SCP-XXXX’s anomalous properties, or if the room wasn’t anomalous during their stay. The room was occupied by sixteen (16) year old child ████, until his suicide on 1/05/2003.

When a sapient entity enters SCP-XXXX alone, the insides of the room appear to shift in size, shape, and appearance according to what situation is present inside. After this process is complete, various situations and entities will manifest inside of the room. These situations follow no particular theme, and have been recorded to contain ritualistic sacrifices, surgeries, terrorist attacks, etc. Meanwhile the entities manifested are usually of characters from TV shows or movies, or more rarely, SCP objects. Situations and entities inside SCP-XXXX are manifested from memories, experiences, and/or knowledge derived from the subject inside. No situation or entity inside of SCP-XXXX have presented any direct danger to the subject inside.

After the subject has entered SCP-XXXX, any events that reside inside of the room appear to be ingrained in the subject's mind as what is "normal" for a bedroom. Depending on what the subject encounters while inside of SCP-XXXX, some subjects have requested to be sent into SCP-XXXX a second time, but it should be noted that this most likely not due to SCP-XXXX itself. Subjects that experience SCP-XXXX will always view SCP-XXXX as a normal bedroom following exposure, and all attempts to convince otherwise using conventional methods have failed (See Interview Log XXXX-3-B). Only known method of convincing any subject of the room's anomalous effect is to remove memories of the room and any memories following exposure using amnestics.

When a subject is sent into SCP-XXXX being informed of the anomalous properties of the room beforehand, the subjects forget about such prior debriefing (See Addendum XXXX-5)

Any form of documentation of SCP-XXXX's anomalous properties from the inside of the room have failed. Video recordings or photographs taken inside of the room turn to black, and all audio recordings appear to be static. Message devices such as phones or computers are unable to send or receive messages, and and form of writing or typing of the events inside of SCP-XXXX show as scribble.

SCP-XXXX appears to be sentient. It is theorized that it effects peoples view on normalcy surrounding bedrooms in order to prevent people from avoiding the room due to its anomalous properties. Despite being seemingly sentient, SCP-XXXX has not attempted to communicate to any subject, and has not responded to requests for an interview.

SCP-XXXX-1 is a Level 2 Humanoid Apparition, location bound, non-violent, non-corporeal. It appears to be the spirit of the deceased ████ who inhabited the room. SCP-XXXX-1 has appeared on occasions inside of closets manifested by SCP-XXXX. Area surrounding SCP-XXXX-1 is surrounded by darkness, which is seemingly unable to be lit. This is theorized to be a "blind spot" for SCP-XXXX. SCP-XXXX-1 claims to be unwillingly trapped inside of SCP-XXXX (See Interview Logs XXXX-13-A through F)

SCP-XXXX-2 is a box half a meter (0.5m) wide on all sides. SCP-XXXX-2 appears to be made from an unknown metallic substance, and has hieroglyphs of unknown origin painted in purple on each side. When SCP-XXXX is manifesting or demanifested anything, SCP-XXXX-2 glows up until the process has completed. SCP-XXXX-2 has proven immune to any tried method of destruction, and no attempt at degrading the paint on SCP-XXXX-2 has failed. SCP-XXXX-2 appears to be the source of the anomalous properties of SCP-XXXX, and upon the box's destruction it is theorized that SCP-XXXX will be effectively neutralized4. This box contains memetic cognitohazard, however, the extent of their power is still unknown5

For unknown reasons, A certain group of people lose the effect of normalcy upon exiting the room. This includes family members and other people either involved in or completely fine with the abuse of the child occupying the room. This is what caused the room's anomalous properties to be discovered upon 3/5/2003 when the homeowner experienced SCP-XXXX's effects. Foundation Field Examiner █████ was dispatched to the scene, and due to SCP-XXXX's effect on perception of normalcy, the agent reported no anomalous properties inside of the room. (See Field Log XXXX-A). Upon routine review of Field Logs, SCP-XXXX was discovered, and a more thorough investigation was authorized. (See Field Log XXXX-B)









BY ORDER OF THE OVERSEER COUNCIL

The following file is Level 5 classified. Unauthorized access will be met with immediate termination.

XXXX









Please enter a command to continue

>access scp-XXXX document-XXXX-A

You are attempting to access a restricted file. Please enter your credentials. Remember, impersonation of a member of the overseer council will result in immediate termination

login: O5-9 || pass: •••••••••

Sorry, you don't have authorization to view this file.

login: TraversonE82 || pass: •••••••••••••••

Login Credentials Accepted. Loading document scp-XXXX-a…

Two Files found under the name "document scp-XXXX-a'