scp-000000000

WELCOME TO THE LONGEST SCP ARTICLE ON THE PLANET! HERE YOU CAN SEE ALL KINDS OF SCP ARTICLES TO CRITIQUE ON, NO SEARCH REQUIRED.

Wow! You flipped a card and got: Temporal Anomaly!!! You ca reload the page or go to the next.
DATE: 13 Jul 2021 22:59

rating: 0+x


: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)); }
}

Assigned Site Site Director Research Head Assigned Task Force
Provisional Site-XXXX Dir. Lucis Bane Dr. Keta Thamel ATF Aevum-0 "Time Savers"

Special Containment Procedures: The containment of both instances of SCP-XXXX is under the express supervision of Provisional Site-XXXX and Applied Task Force Aevum-0 "Time Savers." Constant surveillance shall be maintained to prevent civilian ships or aircraft from entering a 10 km proximity to the shores SCP-XXXX-A. Because of the highly classified nature of Provisional Site-XXXX, personnel with insufficient clearance are to undergo amnestic treatment before leaving SCP-XXXX-A.

In order to prevent the destruction of SCP-XXXX-B, Lucis Reality Stabilizers are placed in critical parts of Site-XXXX.

Description: SCP-XXXX-A is an island located 48°52.6′S 123°23.6′W. Its physical topography is that of a caldera, which may have formed from a fallen volcano. 80% of the island is covered in a forest, the density of which increases as it gets closer to the center of the island. Testing shows that the flora and fauna living on SCP-XXXX-A are non-anomalous, and are similar to those of the region.

The anomalous properties of SCP-XXXX-A is the result of underground phenomena. About 2 km beneath the surface of the island is a vein of an anomalous energy named Tempus Energy. An unknown substance coats the walls of the energy vein. This substance has been named Anti-Temporal Matter, or ATM. The amount of Tempus Energy is constantly increasing. Thus, it can be considered to be limitless.

Tempus Energy has the ability to reverse the flow of time, before dispersing into non-anomalous energy. The Energy can pass through all matter, except for ATM. As such, all units containing the Tempus Energy is to be constructed from ATM.

The amount of time that is reversed by the Tempus Energy depends on the amount of energy released.

On January 24, 2021, Dir. Lucis had requested to the O5 Council for the utilization of the Tempus Energy found in SCP-XXXX-A. The request was approved five days later. Construction of SCP-XXXX-B commenced on February 5th.

SCP-XXXX-B is a spherical structure located 500 meters above the source of Tempus Energy. Within the spherical structure are two main rooms, the Outer Command room and the Control Unit. The Control Unit is a sphere located in a large space. It is supported by five pillars, which feed Tempus Energy into the Unit. A walkway connects the Central Unit to the Outer Command room.

The Control Unit itself is a Time Constant Zone, or TCZ, and is not subject to the time manipulation of the Tempus Energy. As such, personnel and other objects within the Central Unit will not be reversed. Servers have been set up inside of the Central Unit and are connected to the main Foundation servers.

In the event of an imminent XK-Class End of the World event, SCP-XXXX-B shall be activated. Tempus Energy stored within SCP-XXXX-B will be released in calculated amounts in order to reverse time back to an established safe point. The safe point is established on July 14th, 2021.

The range of the time reversion is limited to the area within 50 KM from sea level. As such, it cannot be used to prevent world ending events with cosmic origins. Because of the inconsistency in astronomy, disinformation shall be spread to prevent a Lifted Veil Scenario after the use of SCP-XXXX-B.

Addendum: Incident Report for July 14, 2021

On July 14, 2021, Dir. Lucis and Dr. Minerva disappeared while overseeing the creation of the safe point. The position of the sun had suddenly changed, and some places have reported the area suddenly turning to night. A few minutes later, they came out from the Control Unit. Dr. Lucis requested to have a meeting with the O5 Council. The request was confirmed and a transcript of the meeting has been attached below.

Attendees: O5-1, O5-2, O5-7, O5-8, O5-13, Site Director Lucis

<Begin Log

O5-1: Why was SCP-XXXX-B activated?

Dir. Lucis: I believe you can find that information in the Control Unit Servers.

O5-1: We want to hear your recollection of the event.

Dir. Lucis: On October 25, 2042, an Apollyon-class reality bender was brought under the custody of the Foundation. It had the appearance of a nine year old girl. Of course, there was a procedure put in place to prevent the Type-Green from utilizing its abilities. This procedure was called … cruel by most of the personnel, even Dr. Clef. However, it did its job.

O5-7: Then how did the anomaly cause an XK-Class Event?

Dir. Lucis: It was a junior researcher. Claimed that he heard enough of the bender's cries every time the procedure was enacted. So, he somehow managed to botch the procedure one time. And now, here we are.

O5-8: I believe the junior researcher should be terminated.

Dir. Lucis: I do not recommend this course of action. If we kill one person, there will be others who take his place. There will always be people who see us as evil. But through this, I realized that those people put the rights of few above the safety of all. There will always be people who don't understand us, but we must proceed in our mission.

O5-2: What is your recommendation?

Dir. Lucis: What a coincidence. I believe the best course of action is found in the servers. The article is even written by the Council.

O5-13: Okay, you are dismissed.

<End Log>

No other cases of the activation of SCP-XXXX-B has been found. And all future records are to be added onto the entry found in the CU Servers.


Wow! You flipped a card and got: Fishish!!! You ca reload the page or go to the next.
DATE: 13 Jul 2021 20:54





/*
    Paperstack Theme
    [2020 Wikidot Theme]
    By EstrellaYoshte
    Based on:
      Inkblot Theme by Croquembouche
      Word Processor Theme by stormbreath
      Modern Theme by Azamo
      Simple Yonder Theme by EstrellaYoshte
*/
 
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxygen&display=swap');
@import url(https://fonts.googleapis.com/css2?family=Fira+Code&display=swap);
 
#page-content { font-size: 0.87rem; }
body { font-family: 'Oxygen', sans-serif; }
 
body {
    color: #000000;
    background-image: linear-gradient(
        to bottom, 
        #EFEFEF, #EFEFEF 276px, 
        #D3D3D3 276px, #ffffff 282px,
        #ffffff 282px, #ffffff 100%);
    background-repeat: no-repeat;
}
 
#main-content {
    top: -1.6rem;
    padding: 0.2em;
}
 
.page-source, .code pre, .code p, .code, tt{ 
    font-family: "Fira Code", monospace;
}
 
/* ---- HEADER ---- */
 
div#container-wrap {
     background-image: none;
}
div#header {
    background-image: none;
}
 
#header h1, #header h2 { margin-left: 0; float: none; text-align: center; }
/* Move the subtitle down a smidge */
#header h2 { margin-top: 0.45rem; }
/* Hide the existing text */
#header h1 span, #header h2 span { font-size: 0; display: none;}
/* Style the new text */
#header h1 a::before, #header h2::before {
  color: #333333;
  font-family: 'Josefin Sans', sans-serif;
  text-shadow: none;
}
/* Set the new text's content from variable */
#header h1 a::before {
  content: var(--header-title, "SCP FOUNDATION");
  font-weight: 300;
  font-size: 1.3em;
}
#header h2::before {
  content: var(--header-subtitle, "SECURE - CONTAIN - PROTECT");
  font-weight: 600;
  font-size: 1.22em;
}
 
#login-status,
#login-status a {
    color: #333333;
}
 
#page-title {
    display: none;
}
 
#footer, #footer a {
    background: transparent;
    color: #333333;
}
 
#search-top-box-input,
#search-top-box-input:hover,
#search-top-box-input:focus,
#search-top-box-form input[type=submit],
#search-top-box-form input[type=submit]:hover,
#search-top-box-form input[type=submit]:focus {
    border: none;
    background: #333333;
    box-shadow: none;
    border-radius: 0px;
    color: #efefef;
}
#search-top-box input.empty {
    color: #999999;
}
 
div#search-top-box {
    top: 2.3rem;
    right: 8px;
}
 
/* ---- TOP BAR ---- */
 
#top-bar { 
   display: flex;
   justify-content: center;
   right: 0;
   top: 7.9rem;
}
@media (max-width: 768px) {
    .mobile-top-bar {
         display: flex;
         justify-content: center;
         max-width: 100%;
         width: 100%;
         left: 0;
    }
}
#top-bar, #top-bar a {
    color: #333333;
}
 
/* ---- SIDE BAR ---- */
 
#side-bar .side-block {
    border: transparent;
    border-radius: 0;
    box-shadow: 0px 0px 7px #999999;
    background: #ffffff;
}
#side-bar .side-block.media > * {
    display: flex;
    justify-content: space-evenly;
}
 
#top-bar div.open-menu a {
    border-radius: 0;
    box-shadow: 0px 1px 4px 0 rgba(0, 0, 0, 0.2), 0px 3px 10px 0 rgba(0, 0, 0, 0.19);
    border: 1px white;
}
 
@media (max-width: 767px) {
    #main-content {
        padding: 0;
        margin: 0 5%;
        border-left: none;
    }
    #page-title {
        margin-top: 0.7em;
    }
    #side-bar {
        background-color: #fff;
        left: -19em;
    }
    #side-bar:target {
        border: none;
        box-shadow: 3px 0 1px -2px rgba(0,0,0,0.04), 1px 0 5px 0 rgba(0,0,0,0.2);
    }
    #side-bar .close-menu {
        transition: width 0.5s ease-in-out 0.1s,
                    opacity 1s ease-in-out 0s;
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background: rgba(0,0,0,0.3);
        background-position: 19em 50%;
        z-index: -1;
        opacity: 0;
        pointer-events: none;
    }
    #side-bar:target .close-menu {
        width: calc(100% - 19em);
        right: 0;
        left: auto;
        opacity: 1;
        pointer-events: auto;
    }
    #page-content > hr, #page-content > .list-pages-box > .list-pages-item > hr {
        margin: 3em -5.5%;
    }
    #side-bar {
        top: 0;
    }
    #side-bar .heading {
        padding-left: 1em;
        margin-left: -1em;
    }
    #search-top-box {
        top: 107px;
    }
}
 
/* ---- TABS ---- */
 
/* ---- YUI TAB BASE ---- */
.yui-navset .yui-nav a,.yui-navset .yui-navset-top .yui-nav a{background-color:inherit;background-image:inherit}.yui-navset .yui-nav a:hover,.yui-navset .yui-nav a:focus{background:inherit;text-decoration:inherit}.yui-navset .yui-nav .selected a,.yui-navset .yui-nav .selected a:focus,.yui-navset .yui-nav .selected a:hover{color:inherit;background:inherit}.yui-navset .yui-nav,.yui-navset .yui-navset-top .yui-nav{border-color:inherit}.yui-navset li{line-height:inherit}
 
/* ---- YUI TAB CUSTOMIZATION ----*/
 
 .yui-navset .yui-nav,
 .yui-navset .yui-navset-top .yui-nav{
     display: flex;
     flex-wrap: wrap;
     width: calc(100% - .125rem);
     margin: 0 auto;
     border-color: #333333;
     box-shadow: none;
}
 .yui-navset .yui-nav a, /* ---- Link Modifier ---- */
 .yui-navset .yui-navset-top .yui-nav a{
     color: #333333;
    /* ---- Tab Background Colour | [UNSELECTED] ---- */
     background-color: #efefef;
     border: unset;
     box-shadow: none;
     box-shadow: none;
}
 .yui-navset .yui-nav a:hover,
 .yui-navset .yui-nav a:focus{
     color: #ffffff;
    /* ---- Tab Background Colour | [HOVER] ---- */
     background-color: #333333;
}
 .yui-navset .yui-nav li, /* ---- Listitem Modifier ---- */
 .yui-navset .yui-navset-top .yui-nav li{
     position: relative;
     display: flex;
     flex-grow: 2;
     max-width: 100%;
     margin: 0;
     padding: 0;
     color: #ffffff;
     background-color: #ffffff;
     border-color: transparent;
     box-shadow: none;
}
 .yui-navset .yui-nav li a,
 .yui-navset-top .yui-nav li a,
 .yui-navset-bottom .yui-nav li a{
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
}
 .yui-navset .yui-nav li em{
     border: unset;
}
 .yui-navset .yui-nav a em,
 .yui-navset .yui-navset-top .yui-nav a em{
     padding: .35em .75em;
 
     text-overflow: ellipsis;
     overflow: hidden;
     white-space: nowrap;
}
 .yui-navset .yui-nav .selected, /* ---- Selection Modifier ---- */
 .yui-navset .yui-navset-top .yui-nav .selected{
     flex-grow: 2;
     margin: 0;
     padding: 0;
    /* ---- Tab Background Colour | [SELECTED] ---- */
     background-color: #333333;
}
 .yui-navset .yui-nav .selected a,
 .yui-navset .yui-nav .selected a em{
     border: none;
}
 .yui-navset .yui-nav .selected a{
     width: 100%;
     color: #ffffff;
}
 .yui-navset .yui-nav .selected a:focus,
 .yui-navset .yui-nav .selected a:active{
     color: #ffffff;
     background-color: #333333;
}
 .yui-navset .yui-content {
    background-color: #ffffff;
    box-shadow: 0px 0px 4px #999999;
}
 .yui-navset .yui-content,
 .yui-navset .yui-navset-top .yui-content{
     padding: .5em;
     border: none;
}
 
/* ---- INFO BAR ---- */
 body{
     --barColour: #333333;
}
 
 .info-container .collapsible-block-content{
     padding: 0 .5em 30px;
}
 .info-container .collapsible-block-content .wiki-content-table{
     width: 100%;
}
 
/* ---- INFO PANE ---- */
 
#page-content .creditRate{
    margin: unset;
    margin-bottom: 4px;
}
#page-content .rate-box-with-credit-button {
    background-color: #ffffff;
    border: solid 1px #ffffff;
    box-shadow: 0px 0px 7px #999999;
    border-radius: 0;
}
 
#page-content .rate-box-with-credit-button .fa-info {
    border: none;
    color: #333333;
}
 
#page-content .rate-box-with-credit-button .fa-info:hover {
    background: #333333;
    color: #ffffff;
}
 
.rate-box-with-credit-button .cancel {
    border: solid 1px #ffffff;
}
 
/* ---- PAGE RATING ---- */
 
.page-rate-widget-box {
    box-shadow: 0px 0px 7px #999999;
    margin: unset;
    margin-bottom: 4px;
    border-radius: 0;
}
 
.page-rate-widget-box .rate-points {
    background-color: #ffffff !important;
    color: #333333 !important;
    border: solid 1px #ffffff;
    border-radius: 0;
}
.page-rate-widget-box .rateup,
.page-rate-widget-box .ratedown {
    background-color: #ffffff;
    border-top: solid 1px #ffffff;
    border-bottom: solid 1px #ffffff;
}
 
.page-rate-widget-box .rateup a,
.page-rate-widget-box .ratedown a {
    background: transparent;
    color: #333333;
}
 
.page-rate-widget-box .rateup a:hover,
.page-rate-widget-box .ratedown a:hover {
    background: #333333;
    color: #ffffff;
}
 
.page-rate-widget-box .cancel {
    background: transparent;
    background-color: #ffffff;
    border: solid 1px #ffffff;
    border-radius: 0;
}
 
.page-rate-widget-box .cancel a {
    color: #333333;
}
.page-rate-widget-box .cancel a:hover {
    background: #333333;
    color: #ffffff;
    border-radius: 0;
}
 
/* ---- PAGE ELEMENTS ---- */
 
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333333;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}
 
blockquote,
div.blockquote,
#toc,
.code {
    background-color: #F8F8F8;
    border: solid 1px #F8F8F8;
    box-shadow: 0px 0px 4px #999999;
}
 
.scp-image-block {
    border: solid 8px #ffffff;
    box-shadow: 0px 0px 5px #999999;
    box-sizing: border-box;
}
.scp-image-block .scp-image-caption {
    background-color: #ffffff;
    border-top: solid 4px #ffffff;
    color: black;
}
 
#page-content .wiki-content-table tr th {
    border: solid 1px #999999;
    background-color: #efefef;
    /* set border for table title */
}
#page-content .wiki-content-table tr td {
    border: solid 1px #999999;
    /* set border for table content */
}
 
div.modalbox {
    border-radius: 0;
    border: none;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
}
 
/*-- tags --*/
 
#main-content .page-tags span { max-width: 100%; }
 
#main-content .page-tags a {
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: 0.76rem;
    background-color: #FDFDFD;
    border-radius: 0.6rem 0.12rem;
    margin: .25rem .2rem; .5rem .2rem;
    padding: 0.2rem 0.42rem 0.25rem 0.46rem;
    box-shadow: 0.6px 0.6px 1.9px 0.8px rgba(0,0,0,0.27);
}
 
#main-content .page-tags a:before {
    content: "•";
    font-size: 1.1rem;
    float: left;
    position: relative;
    top: -0.19rem;
    left: -0.24rem;
    color: #ffffff;
    background-color: #B8B8B8;
    color: transparent;
    text-shadow: 1px 1px 0.7px rgba(255,255,255, 0.82);
    -webkit-background-clip: text;
       -moz-background-clip: text;
            background-clip: text;
}
 
/* ---- CUSTOM SYNTAX ---- */
 
.header-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-around;
  align-content: space-between;
  width: 100%;
  left: 0;
  align-items: flex-start;
  row-gap: 2px;
}
 
.text-item {
  flex-grow: 1;
  max-width: 25%;
  text-align: center;
}
 
.grid-item {
  flex-grow: 1;
  min-width: 25%;
  text-align: center;
  margin: 8px 6px;
}
@media (max-width: 1200px) {
  .grid-item {
    min-width: 50%; 
  }
}
 
.logo {
  position: absolute;
  width: 180px;
  top: -154px;
  left: -17em;
  z-index: -1;
}
@media (max-width: 767px) {
  .logo {
    width: 36%;
    top: -9.7em;
    left: 32%;
  }
}
 
.textbox {
  position: absolute;
  width: 42%;
  top: 7.5rem;
}
@media (max-width: 960px) and (min-width: 767px), (max-width: 666px) {
  .textbox {
    position: relative;
    width: 100%;
    top: 0;
  }
}
/* source: http://ah-sandbox.wikidot.com/component:collapsible-sidebar-x1 */
 
#top-bar .open-menu a {
        position: fixed;
        top: 0.5em;
        left: 0.5em;
        z-index: 5;
        font-family: 'Nanum Gothic', san-serif;
        font-size: 30px;
        font-weight: 700;
        width: 30px;
        height: 30px;
        line-height: 0.9em;
        text-align: center;
        border: 0.2em solid #888;
        background-color: #fff;
        border-radius: 3em;
        color: #888;
}
 
@media (min-width: 768px) {
 
    .mobile-top-bar {
        display: block;
    }
 
    .mobile-top-bar li {
        display: none;
    }
 
    #main-content {
        max-width: 708px;
        margin: 0 auto;
        padding: 0;
        transition: max-width 0.2s ease-in-out;
    }
 
    #side-bar {
        display: block!important;
        position: fixed;
        top: 0;
        left: -19em;
        width: 17em;
        height: 100%;
        margin: 0;
        overflow-y: auto;
        z-index: 10;
        padding: 0.3em 0.675em;
        background-color: rgba(0,0,0,0.1);
        transition: left 0.5s ease-in-out;
    }
 
    #side-bar:target {
        display: block;
        left: 0;
        width: 17em;
        margin: 0;
        z-index: 10;
    }
 
    #side-bar:target .close-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }
 
    #top-bar .open-menu a:hover {
        text-decoration: none;
    }
 
    .close-menu {
        margin-left: 19em;
        opacity: 0;
    }
}
:root {
    --posX: calc(50% - 358px - 12rem);
}
 
/*--- Footnote Auto-counter --*/
#page-content {
    counter-reset: megacount;
}
 
/*--- Footnote Superscript Number --*/
.fnnum {
    display: inline-block;
    text-indent: calc(-1% - 0.1em);
    overflow: hidden;
    line-height: 83%;
    text-decoration: none;
    font-weight: bold;
    font-style: initial;
    color: transparent;
    position: relative; top: -0.25em; font-size: 82%;
    padding: .15em calc(.21em - 0.4px) .12em calc(.11em - 1px);
    margin-left: -0.06em;
    margin-right: -0.25em;
    counter-increment: megacount;
    user-select: none;
}
.fnnum::after {
    content: "" counter(megacount);
    color: var(--fnColor, #E6283C);
}
.fnnum:hover {
    text-decoration: none;
    cursor: pointer;
    background-color: var(--fnColor, #E6283C);
}
.fnnum:hover::after { color: white; }
 
/*--- Footnote Content Wrapper --*/
.fncon {
    position: absolute;
    right: calc(var(--posX) + 80px);
    line-height: 1.2;
    padding: 0.82rem;
    width: 10.3rem;
    background: white;
    border: 2px solid black;
    font-weight: initial;
    font-style: initial;
    text-align: initial;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s linear, right 0.3s cubic-bezier(.08,.72,.5,.94);
    z-index: 9;
}
.fnnum:hover + .fncon {
    opacity: 1;
    right: var(--posX);
}
.fncon::before {
    position: absolute;
    top: 0; left: 0;
    transform: translateX(-52%) translateY(-55%) scale(1.15);
    background-color: var(--fnColor, #E6283C);
    color: white;
    content: counter(megacount);
    font-size: initial;
    font-weight: bold;
    font-style: initial;
    padding-left: 0.32em; padding-right: 0.32em;
    padding-top: 0.18rem; padding-bottom: 0.08rem;
}
 
/*--- Mobile Query --*/
@media only screen and (max-width: 1279px) {
    .fncon {
        position: fixed;
        bottom: 1.3rem;
        left: calc(11% - 50px);
        width: 70%;
        transition: opacity 0.15s linear, left 0.3s cubic-bezier(.08,.72,.5,.94);
    }
    .fnnum:hover + .fncon {
        left: 11%;
     }
}
: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)); }
}


/*
 
    BASALT Theme
    [2021 Wikidot Theme]
    By Azamo & Placeholder McD
 
    Based on:
 
    Paperstack Theme by EstrellaYoshte
    Minimal Theme by Stormbreath
    BLANKSTYLE CSS by Placeholder McD & HarryBlank
    PLACESTYLE CSS by Placeholder McD
    Simple Yonder Theme by EstrellaYoshte
 
    Tab animation by Croquembouche
 
*/
 
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');
 
/* MAIN */
 
/* ======================= */
 
:root {
    --title: " SCP FOUNDATION";
    --subtitle: " SECURE • CONTAIN • PROTECT";
    --barColour: rgb(20, 20, 20);
    --fnColor: rgb(15, 15, 15);
    --logo: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/basalt_logotype_black.png);
    --sidelogo: var(--logo);
    --sidesubtitle: var(--subtitle);
}
 
body {
    background: rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
}
 
#main-content {
    top: -2.8rem;
}
 
/* ======================= */
 
/* HEADER & TOPBAR */
 
/* ======================= */
 
#extra-div-1 {
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 1000vw;
    height: 5rem;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    background: white;
}
 
#extra-div-2 {
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    width: 1000vw;
    height: 5rem;
}
 
#extra-div-1::before {
    content: var(--title);
    position: fixed;
    left: 8.5rem;
    top: 0.7rem;
    color: black;
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    font-size: 27.45px;
    animation: slideLeft 1s;
    transition-duration: 0.3s;
    transition-property: transform;
    transform: translateZ(0);
}
 
#extra-div-2::before {
    content: var(--subtitle);
    position: fixed;
    font-size: 1.22em;
    left: 8.5rem;
    top: 2.5rem;
    color: #272842;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    animation: slideLeft 1s;
}
 
#u-header-link {
    display: block;
    position: fixed;
    top: 0.6rem;
    left: 8.3rem;
    height: 3.5rem;
    width: 15.7rem;
    z-index: 21;
}
 
.logo {
    z-index: 10;
    position: fixed;
    width: 4.5rem;
    height: 4.5rem;
    top: 0.2rem;
    left: 3.6rem;
    transition-duration: 0.3s;
    transition-property: transform;
    transform: translateZ(0);
    animation: slideLeft 1s;
    background-image: var(--logo);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
 
.logo:hover {
    transform: rotate(348deg);
}
 
#header {
    height: 5rem;
}
 
#header h1,
#header h2 {
    display: none;
}
 
#top-bar {
    position: fixed;
    align-items: stretch;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    animation: slideLeft 1s;
    top: 1.7rem;
    max-width: 50rem;
    min-width: 8rem;
    font-size: 90%;
    font-weight: 800;
    left: 25.4rem;
}
 
#top-bar div.open-menu a {
    display: none;
}
 
#top-bar ul {
    float: left;
}
 
#top-bar ul li ul {
    border: none;
}
 
#top-bar ul li.sfhover ul li a,
#top-bar ul li:hover ul li a {
    background-color: #F4F4F4;
}
 
#top-bar ul li>a {
    border: none;
}
 
#top-bar a {
    filter: grayscale(100%) saturate(0%);
    -webkit-filter: grayscale(100%) saturate(0%);
}
 
#top-bar ul li.sfhover a:hover,
#top-bar ul li:hover a:hover {
    background: #F4F4F4;
}
 
#top-bar ul li.sfhover a,
#top-bar ul li:hover a {
    border: none;
}
 
#top-bar ul li>a {
    transition-duration: 0.3s;
    transition-property: transform;
    transform: translateZ(0);
}
 
#top-bar ul li>a:hover {
    transform: translate(0px, -3px);
    border: none;
}
 
#top-bar ul li ul li>a:hover {
    animation: none;
}
 
@keyframes translateTop {
    0% {
        opacity: 1;
    }
    100% {
        transform: translate(0px, -3px);
    }
}
 
@keyframes slideLeft {
    0% {
        transform: translate(-200px, 0px);
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
 
@keyframes tilt {
    0% {
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
    }
}
 
#login-status {
    position: fixed;
    top: 0.65rem;
    right: 2rem;
    width: fit-content;
    font-size: 0.78em;
    text-align: center;
    color: transparent;
}
 
#login-status > a > strong {
    margin-right: 0.7rem;
    font-size: 0.7rem;
}
 
#login-status > span {
    color: #333;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
}
 
#login-status span.printuser img {
    font-size: 0;
    transform: translate(6px, 5px);
}
 
#login-status a#my-account {
    display: none;
}
 
#account-topbutton {
    border: none;
    margin-left: -0.25rem;
}
 
div#search-top-box {
    width: 2rem;
    position: fixed;
    top: 0.76rem;
    right: 0.2rem;
    z-index: 21;
}
 
#search-top-box-input {
    display: none;
}
 
#search-top-box-form>input[type=submit],
#search-top-box-form>input[type=submit]:hover,
#search-top-box-form>input[type=submit]:focus,
#search-top-box-form>input[type=submit]:target {
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M505%20442.7L405.3%20343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3%2044-79.7%2044-128C416%2093.1%20322.9%200%20208%200S0%2093.1%200%20208s93.1%20208%20208%20208c48.3%200%2092.7-16.4%20128-44v16.3c0%206.4%202.5%2012.5%207%2017l99.7%2099.7c9.4%209.4%2024.6%209.4%2033.9%200l28.3-28.3c9.4-9.4%209.4-24.6.1-34zM208%20336c-70.7%200-128-57.2-128-128%200-70.7%2057.2-128%20128-128%2070.7%200%20128%2057.2%20128%20128%200%2070.7-57.2%20128-128%20128z%22%2F%3E%3C%2Fsvg%3E") 50%/0.8rem no-repeat, #000 !important;
    border: none;
    border-radius: 30%;
    font-size: 0;
    height: 1.2rem;
    width: 1.2rem;
    margin-top: 0.2rem;
}
 
.mobile-top-bar {
    left: unset;
}
 
/* ======================= */
 
/* SIDEBAR */
 
/* ======================= */
 
#u-sb-button {
    display: block;
    position: fixed;
    top: 0.5rem;
    left: 0.9rem;
    height: 4rem;
    width: 45px;
    color: black;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 2.5rem;
    text-decoration: none !important;
    z-index: 21;
    transition-duration: 0.3s;
    transition-property: transform;
    transform: translateZ(0);
    animation: slideLeft 1s;
}
 
#u-sb-button:hover {
    font-weight: 900;
}
 
#side-bar {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    background: linear-gradient( 0deg, rgba(255, 255, 255, 1) 87%, rgba(250, 250, 250, 1) 100%);
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400 !important;
    overflow-x: hidden;
}
 
#side-bar::before {
    content: var(--sidesubtitle);
    background: var(--sidelogo);
    background-size: 4.5rem;
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 0.3rem;
    padding-top: 4.7rem;
    display: inline-block;
    border-bottom: double 5px black;
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    text-transform: none;
}
 
#side-bar,
#side-bar:target {
    z-index: 22;
}
 
#side-bar a {
    color: black;
}
 
#side-bar a:visited {
    color: black;
}
 
#side-bar img,
iframe.scpnet-interwiki-frame {
    filter: grayscale(100%) saturate(0%);
    -webkit-filter: grayscale(100%) saturate(0%);
}
 
#side-bar .side-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 1) 100%);
    border-color: transparent;
    border-radius: 0px;
}
 
#side-bar .side-block.media {
    background-color: white;
    border-bottom: solid 2px rgb(190, 190, 190);
    border-top: solid 2px rgb(190, 190, 190);
    margin-top: 1rem;
}
 
#side-bar .heading {
    color: black;
    border-bottom: solid 1px black;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
}
 
#side-bar .collapsible-block-folded {
    background-image: url(https://scp-wiki.wdfiles.com/local--files/theme%3Aminimal/expand.png);
}
 
#side-bar .collapsible-block-unfolded-link {
    border-bottom: solid 1px black;
}
 
#side-bar .collapsible-block-unfolded-link .collapsible-block-link,
#side-bar .collapsible-block-unfolded-link .collapsible-block-link:hover {
    color: black;
}
 
/* ======================= */
 
/* TABS */
 
/* ======================= */
 
ul.yui-nav a {
    font-family: 'Work Sans', sans-serif;
    padding: 3.5px;
    color: white;
    font-weight: 600;
}
 
.yui-navset .yui-nav .selected,
.yui-navset .yui-navset-top .yui-nav .selected,
.yui-navset .yui-nav a:hover,
yui-navset .yui-nav a:active {
    color: white;
    background-color: black;
}
 
.yui-navset .yui-nav,
.yui-navset .yui-navset-top .yui-nav {
    border: none;
    border-bottom: dotted 1px grey;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
 
.yui-navset .yui-content>div {
    display: block;
    top: 0;
    overflow: hidden;
    transform-origin: 0 0;
}
 
.yui-navset-top a {
    transition-property: background, background-color;
    transition-duration: 0.2s;
}
 
/* Tab animation by Croquembouche */
/*---------------------------------------------*/
 
#page-content .yui-navset .yui-content>div[style*="none"] {
    display: block !important;
    flex: 0;
    max-height: 0;
    padding: 0 0.5em;
    border-width: 0;
    /* The following transition affects the one that DISAPPEARS */
    transition: padding 0s linear 0.5s, border-width 0s linear 0.5s, flex 0.5s cubic-bezier(.18, .51, .54, .9) 0s;
    animation: tab-disappear 0.5s ease-in-out 0s 1 both;
}
 
#page-content .yui-navset .yui-content>div[style*="block"] {
    display: block !important;
    flex: 1;
    max-height: 9999rem;
    /* The following transition affects the one that APPEARS */
    transition: padding 0s linear 0.5s, border-width 0s linear 0.5s, flex 0.5s cubic-bezier(.18, .51, .54, .9) 0.5s;
    animation: tab-appear 0.5s ease-in-out 0.5s 1 both;
}
 
@keyframes tab-disappear {
    0% {
        max-height: 9999rem;
    }
    1% {
        max-height: 100vh;
    }
    100% {
        max-height: 0;
    }
}
 
@keyframes tab-appear {
    0% {
        max-height: 0;
    }
    99% {
        max-height: 100vh;
    }
    100% {
        max-height: 9999rem;
    }
}
 
/*---------------------------------------------*/
 
.yui-navset .yui-content {
    background: transparent;
    box-shadow: none;
    border-bottom: dotted 4px grey;
}
 
/* ======================= */
 
/* TAGS */
 
/* ======================= */
 
#main-content .page-tags a {
    line-height: inherit;
    background-color: rgb(20, 20, 20);
    border-radius: 2px 6px;
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}
 
.page-tags span {
    border-top: none;
}
 
/* ======================= */
 
/* CONTENT */
 
/* ======================= */
 
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: black;
}
 
.top-left-box>.item {
    display: none;
}
 
hr {
    background-color: #333;
}
 
.info-container {
    padding-bottom: 8px
}
 
/* CONTENT > CUSTOM DIVS */
 
/* ======================= */
 
.document {
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 26px auto 0;
    max-width: 550px;
    min-height: 300px;
    padding: 24px;
    padding-top: 50px;
    position: relative;
    width: 80%;
}
 
.document:before,
.document:after {
    content: "";
    height: 98%;
    position: absolute;
    width: 100%;
    z-index: -1;
}
 
.document:before {
    background: #fafafa;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    left: -5px;
    top: 4px;
    transform: rotate(-2.5deg);
}
 
.document:after {
    background: #f6f6f6;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    right: -3px;
    top: 1px;
    transform: rotate(1.4deg);
}
 
.darkdocument {
    background: rgb(30, 30, 30);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 26px auto 0;
    max-width: 550px;
    min-height: 300px;
    padding: 24px;
    padding-top: 50px;
    position: relative;
    width: 80%;
    color: #EDEDED;
}
 
.darkdocument:before,
.darkdocument:after {
    content: "";
    height: 98%;
    position: absolute;
    width: 100%;
    z-index: -1;
}
 
.darkdocument:before {
    background: rgb(25, 25, 25);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    left: -5px;
    top: 4px;
    transform: rotate(-2.5deg);
}
 
.darkdocument:after {
    background: rgb(25, 25, 25);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    right: -3px;
    top: 1px;
    transform: rotate(1.4deg);
}
 
.notation {
    border-left: solid 3px rgb(30, 30, 30);
    border-right: solid 3px rgb(30, 30, 30);
    padding: 25px 25px 25px 25px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    width: 75%;
    margin: auto;
    background: #f7f7f7;
}
 
.modal {
    padding: 15px 15px 15px 15px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    width: 96%;
    margin: auto;
    background: rgb(253, 253, 253);
    border: solid 2px #5D5D5D;
}
 
.smallmodal {
    padding: 15px 15px 15px 15px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    width: 75%;
    margin: auto;
    background: rgb(253, 253, 253);
    border: solid 2px #5D5D5D;
}
 
.jotting {
    padding: 5px 10px 5px 10px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    width: 75%;
    margin: auto;
    background: #FDFDFD;
    border: dashed 0.1rem #5D5D5D;
}
 
.transcript {
    padding: 10px 10px 10px 10px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
    width: 80%;
    margin: auto;
    background: rgb(253, 253, 253);
    border: dotted 1px #5D5D5D;
    border-radius: 10px;
}
 
.papernote {
    background-color: #eaeeef;
    color: #21252E !important;
    padding: 0.1rem 0.5rem 0.5rem 0.5rem;
    box-shadow: 1px 1px 3px 2px rgb(0 0 0 / 30%);
    margin: auto;
    width: 65%;
}
 
.raisa_memo {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/RAISA_LIGHTLOGO.png) #fff3ad;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    width: 90%;
    min-height: 4rem;
    max-height: 100rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 10px 20px 20px 20px;
    word-break: break-word;
}
 
.raisa_memo>p:nth-child(1)::before {
    content: "NOTICE FROM THE RECORDS AND INFORMATION SECURITY ADMINISTRATION\00000a";
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    font-size: 130%;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: dotted 0.13rem darkslategrey;
    max-width: 49rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    align-items: center;
}
 
.classification_memo {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/CLASSIFICATION_LIGHTLOGO.png) #edf5f3;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    width: 90%;
    min-height: 4rem;
    max-height: 100rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 10px 20px 20px 20px;
    word-break: break-word;
}
 
.classification_memo>p:nth-child(1)::before {
    content: "CLASSIFICATION COMMITTEE MEMORANDUM\00000a";
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    font-size: 130%;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: dotted 0.13rem darkslategrey;
    max-width: 49rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    align-items: center;
}
 
.ettra_memo {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/ETTRA_LIGHTLOGO.png) #f5d7d7;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    width: 90%;
    min-height: 4rem;
    max-height: 100rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 10px 20px 20px 20px;
    word-break: break-word;
}
 
.ettra_memo>p:nth-child(1)::before {
    content: "NOTICE FROM THE EMERGENT THREAT TACTICAL RESPONSE AUTHORITY\00000a";
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    font-size: 130%;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: dotted 0.13rem darkslategrey;
    max-width: 49rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    align-items: center;
}
 
.ethics_memo {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/ETHICS_LIGHTLOGO.png) #ffdbc4;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    width: 90%;
    min-height: 4rem;
    max-height: 100rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 10px 20px 20px 20px;
    word-break: break-word;
}
 
.ethics_memo>p:nth-child(1)::before {
    content: "ETHICS COMMITTEE MEMORANDUM\00000a";
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    font-size: 130%;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: dotted 0.13rem darkslategrey;
    max-width: 49rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    align-items: center;
}
 
.temporal_memo {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/DELTA_T_LIGHTLOGO.png) #ffffff;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
    border: double 3px lightgrey;
    width: 90%;
    min-height: 4rem;
    max-height: 100rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 10px 20px 20px 20px;
    word-break: break-word;
}
 
.temporal_memo>p:nth-child(1)::before {
    content: "THE TEMPORAL ANOMALIES DEPARTMENT\00000a";
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    font-size: 130%;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: dotted 0.13rem darkslategrey;
    max-width: 49rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    align-items: center;
}
 
.overwatch_memo {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/O5_LIGHTLOGO.png) #e3e3e3;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    width: 90%;
    min-height: 4rem;
    max-height: 100rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 10px 30px 20px 20px;
    word-break: break-word;
}
 
.overwatch_memo>p:nth-child(1)::before {
    content: "OVERWATCH COMMAND\00000a";
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    font-size: 130%;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.55rem;
    border-bottom: dotted 0.13rem darkslategrey;
    max-width: 49rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    align-items: center;
}
 
.miscomm_memo {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/MISCOMM_LIGHTLOGO.png) #eeedfa;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    font-family: 'Work Sans', sans-serif;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    width: 90%;
    min-height: 4rem;
    max-height: 100rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 10px 30px 20px 20px;
    word-break: break-word;
}
 
.miscomm_memo>p:nth-child(1)::before {
    content: "NOTICE FROM THE DEPARTMENT OF MISCOMMUNICATIONS\00000a";
    font-family: 'Work Sans', sans-serif;
    font-weight: 900;
    font-size: 130%;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: dotted 0.13rem darkslategrey;
    max-width: 49rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    align-items: center;
}
 
.raisa_memo a,
.temporal_memo a,
.classification_memo a,
.overwatch_memo a,
.ettra_memo a,
.ethics_memo a,
.miscomm_memo a {
    font-weight: 700;
}
 
.bigtext {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
}
 
.st {
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    text-decoration: underline;
}
 
/* ======================= */
 
/* CONTENT > TABLES */
 
/* ======================= */
 
#page-content .wiki-content-table tr th {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    border: solid 1px #000;
    background-color: #aaa;
}
 
#page-content .wiki-content-table tr td {
    border: 1px #000 solid;
}
 
#page-content .table1 tr th {
    background-color: #D7EFE7;
}
 
#page-content .table1 .st {
    color: #D7EFE7;
}
 
#page-content .table2 tr th {
    background-color: #D8ECF4;
}
 
#page-content .table2 .st {
    color: #D8ECF4;
}
 
#page-content .table3 tr th {
    background-color: #FDF6D7;
}
 
#page-content .table3 .st {
    color: #FDF6D7;
}
 
#page-content .table4 tr th {
    background-color: #FFDABF;
}
 
#page-content .table4 .st {
    color: #FFDABF;
}
 
#page-content .table5 tr th {
    background-color: #F5D8E0;
}
 
#page-content .table5 .st {
    color: #F5D8E0;
}
 
#page-content .table6 tr th {
    background-color: rgba(146, 0, 255, 0.2);
}
 
#page-content .table6 .st {
    color: rgb(146, 0, 255);
}
 
.tableb .wiki-content-table {
    border-collapse: separate;
    border-spacing: 5px;
    padding-left: -100px;
}
 
.table1 .scp-image-block .scp-image-caption {
    background-color: #D7EFE7;
    color: black;
}
 
.table2 .scp-image-block .scp-image-caption {
    background-color: #D8ECF4;
    color: black;
}
 
.table3 .scp-image-block .scp-image-caption {
    background-color: #FDF6D7;
    color: black;
}
 
.table4 .scp-image-block .scp-image-caption {
    background-color: #FFDABF;
    color: black;
}
 
.table5 .scp-image-block .scp-image-caption {
    background-color: #F5D8E0;
    color: black;
}
 
.table6 .scp-image-block .scp-image-caption {
    background-color: rgba(146, 0, 255, 0.2);
    color: black;
}
 
/* ======================= */
 
/* CONTENT > RATING MODULE */
 
/* ======================= */
 
.rate-points {
    color: black !important;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    font-size: 90%;
}
 
.page-rate-widget-box .rateup,
.page-rate-widget-box .ratedown,
.page-rate-widget-box .cancel,
.page-rate-widget-box .rate-points {
    border: none;
}
 
/* ======================= */
 
/* CONTENT > IMAGE BLOCK */
 
/* ======================= */
 
.scp-image-block img {
    background: white;
}
 
.scp-image-block.block-right {
    margin: 0em 0em 1em 2em;
}
 
.scp-image-block.block-center {
    max-width: 99% !important;
}
 
.scp-image-block {
    border: none;
    box-shadow: none;
}
 
.scp-image-block .scp-image-caption {
    border-top: none !important;
    margin-top: 8px;
    background-color: #292929;
    color: #ffffff;
}
 
.scp-image-block img,
.scp-image-block .scp-image-caption {
    outline: solid 1px #444;
    box-shadow: 0px 0px 5px #999999;
}
 
.scp-image-block .scp-image-caption p {
    font-size: 110%;
    font-family: 'Work Sans', sans-serif;
}
 
/* ======================= */
 
/* CONTENT > LINKS */
 
/* ======================= */
 
a {
    color: #0645AD;
}
 
a.newpage {
    color: #CC2200;
}
 
a:visited {
    color: #0B0080;
}
 
.danger-diamond a, .danger-diamond a::selection {
    color: transparent;
    background: none;
}
 
.scp-image-block .scp-image-caption a {
    color: #c5c5c5;
}
 
/* ======================= */
 
/* CONTENT > SCROLLBAR */
 
/* ======================= */
 
::-webkit-scrollbar {
    cursor: pointer;
    border: none;
}
 
::-webkit-scrollbar-thumb {
    background: black;
    cursor: pointer;
}
 
::-webkit-scrollbar-thumb:hover {
    background: rgb(45, 45, 45);
}
 
::-webkit-scrollbar-track {
    background: white;
}
 
/* ======================= */
 
/* CONTENT > COLLAPSIBLES */
 
/* ======================= */
 
a.collapsible-block-link {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: white;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 7px;
    padding-right: 9px;
    background: rgb(20, 20, 20);
    border-radius: 3px;
    margin-top: 10px;
    margin-bottom: 10px;
}
 
/* ======================= */
 
/* CONTENT > PAGE TITLE / BREADCRUMBS */
 
/* ======================= */
 
#page-title,
.meta-title {
    display: block !important;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: #252525;
    border: none;
    margin-top: 3rem;
}
 
#breadcrumbs {
    text-transform: uppercase;
    color: grey;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-top: -1.5rem;
    font-size: 90%;
}
 
/* ======================= */
 
/* CONTENT > BETTERFOOTNOTES INTEGRATION */
 
/* ======================= */
 
.fnnum:hover {
    background: transparent;
    transform: scale(1.3);
}
 
.fnnum {
    transition-duration: 0.2s;
    transition-property: transform;
    transform: translateZ(0);
}
 
.fnnum::after {
    color: #3f21ff !important;
}
 
.fnnum:hover::after {
    color: white !important;
}
 
.fncon {
    background: rgb(25, 25, 25) !important;
    color: #EDEDED;
    border: 0.15rem solid rgb(20, 20, 20);
    border-radius: 2px;
    font-size: 90%;
}
 
/* ======================= */
 
/* @MEDIA QUERIES / MOBILE FORMATTING */
 
/* ======================= */
 
@media only screen and (max-width: 600px) {
    .scp-image-block.block-right {
        float: none;
        margin: 10px auto;
    }
}
 
@media (min-width: 768px) {
    #header,
    #top-bar {
        width: calc(100% - 4.4rem);
        max-width: calc(100% - 4.4rem);
    }
    #main-content {
        max-width: 95%;
    }
}
 
@media (max-width: 1120px) {
    #top-bar {
        font-weight: 600;
        font-size: 80%;
    }
}
 
@media (max-width: 1020px) {
    #top-bar {
        top: 3.2rem;
        left: 7.8rem;
    }
    #extra-div-1::before {
        top: 0.3rem;
    }
    #extra-div-2::before {
        top: 1.9rem;
    }
    #u-header-link {
        height: 2.5rem;
    }
    .document,
    .darkdocument {
        width: 95%;
    }
}
 
@media (max-width: 767px) {
    .mobile-top-bar {
    display: flex;
    justify-content: flex-start;
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    }
}
 
@media (max-width: 500px) {
    .logo {
        display: none;
    }
    #top-bar {
        left: 3.6rem;
    }
    #extra-div-1::before,
    #extra-div-2::before {
        left: 4.2rem;
    }
    #u-header-link {
        left: 4rem;
    }
}
 
@media (max-width: 560px) {
    #login-status span.printuser {
        font-size: 0;
    }
}
 
@media (max-width: 430px) {
    #extra-div-1::before {
        font-size: 23.45px;
        top: 0.5rem;
    }
    #extra-div-2::before {
        font-size: 1em;
        top: 2.1rem;
    }
    #u-header-link {
        width: 13.5rem;
    }
    #login-status {
        right: 1.8rem;
    }
}
 
/* ======================= */
 
/* MISC */
 
/* ======================= */
 
::selection {
    background-color: rgba(0, 0, 255, 0.7);
    color: white;
}
 
select {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    border: solid 2px grey;
    cursor: pointer;
    border-radius: 5px;
}
 
body.wait {
    cursor: wait;
}
 
body.wait * {
    cursor: auto;
}
 
input {
    font-size: 90%;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
}
 
#action-area > p {
    font-size: 90%;
    font-weight: 500;
}
 
#action-area > h1 {
    font-size: 150%;
}
 
div.buttons input, input.button, button, file, a.button {
    margin: 0 2px;
    border: 2px solid grey;
    cursor: pointer;
}
 
#who-rated-page-area > h2 {
    display: none;
}
 
#who-rated-page-area>div {
    column-count: 4;
}
 
@media (max-width: 900px) {
    #who-rated-page-area>div {
        column-count: 3;
    }
}
 
@media (max-width: 700px) {
    #who-rated-page-area>div {
        column-count: 2;
    }
}
 
@media (max-width: 540px) {
    #who-rated-page-area>div {
        column-count: 1;
    }
}
 
.pager .current {
    border-style: solid;
    outline: solid 1px rgb(250, 250, 250);
}
 
.pager a,
.pager .current {
    border-style: double;
    border-width: 3px;
    text-transform: uppercase;
    background: none;
    color: inherit;
}
 
.pager a:hover,
.pager .current:hover {
    text-decoration: none;
    cursor: pointer;
}
 
.pager .target {
    font-weight: 800;
}
 
.w-container {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    border: double 4px black !important;
    margin: auto;
    width: 90%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
 
.s-cell {
    font-size: 1.25rem !important;
}
 
.w-container > div > div > p {
    line-height: 22px;
}
 
.anom-bar-container,
.anom-bar-container * {
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 700;
}
 
#page-content div.warning-box div.text-number, #page-content div.warning div.text-number {
    font-size: 140%;
    font-weight: 400;
}
 
#page-content div.warning-box strong, #page-content div.warning strong {
    font-weight: 700;
}
 
#page-content div.warning-box div.text-top, #page-content div.warning div.text-top {
    font-weight: 800;
}
 
#page-content div.warning-box, #page-content div.warning {
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 500;
}
 
.collection {
    font-family: 'Work Sans', sans-serif;
    color: #905c5c;
}
 
.footer-wikiwalk-nav {
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
    width: fit-content;
    margin: auto;
    margin-top: 1rem;
}
 
.footer-wikiwalk-nav p {
    color: #EDEDED;
}
 
.footer-wikiwalk-nav a, .footer-wikiwalk-nav p {
    border-radius: 10px;
    background: rgb(20, 20, 20);
    width: fit-content;
    margin: auto;
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}
 
.footer-wikiwalk-nav a {
    color: #bdbdff;
}
 
.footer-wikiwalk-nav a:hover {
    text-decoration: underline;
}
 
/* MISC > WIKIDOT OWINDOW */
 
/* ======================= */
 
#owindow-1 {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 1) 100%);
}
 
#owindow-1>div.title.modal-header {
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    font-size: 90%;
    cursor: default;
}
 
#owindow-1>div.content.modal-body td.active>b {
    font-family: 'Work Sans', sans-serif;
    color: rgb(100, 100, 100);
}
 
#owindow-1>div.content.modal-body>table {
    max-height: 10rem;
    overflow: auto;
    display: block;
}
 
#owindow-1>div.content.modal-body>div {
    margin-top: 1.5rem !important;
    border-top: solid 0.2rem rgb(210, 210, 210);
    padding-top: 1rem;
}
 
#owindow-1>div.content.modal-body>div>div>a {
    background: #870000;
}
 
#owindow-1>div.content.modal-body>div>div>a:hover {
    background: #470000;
}
 
#owindow-1>div.content.modal-body>img {
    filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.3));
    padding: 0px 0px 0px 0px !important;
    background: none;
    background-color: transparent !important;
    margin-right: 1.7rem;
}
 
#owindow-1 {
    font-family: 'Work Sans', sans-serif;
}
 
/* ======================= */
 
/* MISC > EDIT BOX & PAGE SOURCE */
 
/* ======================= */
 
#lock-info {
    box-shadow: 0px 0px 4px #999999;
    background: white;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    margin-left: 1rem;
    font-size: 95%;
    border: solid 1px grey;
    color: #191919;
}
 
#edit-page-form>table.edit-page-bottomtable>tbody>tr>td:nth-child(1)>div.sub,
#edit-page-form>table.form>tbody>tr>td:nth-child(1) {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}
 
#edit-page-form>table.edit-page-bottomtable>tbody>tr>td:nth-child(1)>div:nth-child(1) {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
}
 
.wd-editor-toolbar-panel ul li a {
    height: 22px;
    width: 22px;
    padding: 0;
    margin: 0;
    display: block;
    border-radius: 2px;
    filter: invert(1), hue-rotate(180deg);
    filter: invert(1) hue-rotate( 180deg);
}
 
.wd-editor-toolbar-panel {
    margin-bottom: 0.5rem;
}
 
input#edit-page-title.text {
    border-radius: 4px;
    font-family: 'Work Sans', sans-serif;
    border: 2px solid #afafaf;
}
 
textarea {
    font-family: 'Roboto', sans-serif;
    padding: 5px 5px 5px 5px;
    font-size: 105%;
    border: 0.13rem solid #949494;
    background-color: #FFF;
    color: #000;
    border-radius: 2px;
}
 
.page-source {
    background: white;
    font-family: 'Roboto', sans-serif;
    font-size: 105%;
    border: none;
    width: 80%;
    box-shadow: 0px 0px 4px #999999;
    padding: 18px 18px 18px 18px;
    word-break: break-word;
}
 
/* ======================= */
 
/* MISC > FONT SIZE/WEIGHT CHANGES */
 
/* ======================= */
 
#page-content strong {
    font-weight: 900;
}
 
#page-content {
    font-size: 110%;
}
 
/* ======================= */
 
#show-upload-button {
    float: unset;
    border-radius: 6px;
    border: solid 1px grey;
    font-size: 0.85rem;
}
 
.edit-help-34 {
    margin-top: 2px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
}
 
.printuser a {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
}
 
form,
#action-area>p,
table.page-files td span {
    font-family: 'Work Sans', sans-serif;
}
 
#action-area>table>thead>tr,
#revision-list>table>tbody>tr:nth-child(1) {
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}
 
#page-info {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
}
 
#page-info::first-letter,
a.btn.btn-default.button.button-close::first-letter,
a.btn.btn-default.button.button-close-message::first-letter,
a.btn.btn-default.button.button-cancel::first-letter,
a.btn.btn-default.button.button-rename::first-letter,
a.btn.btn-default.button.button-no\,-cancel::first-letter,
#owindow-1 > div.button-bar.modal-footer > a.btn.btn-default.button.button-yes\,-delete::first-letter,
#owindow-1 td::first-letter {
    text-transform: uppercase;
}
 
#owindow-1 td a::first-letter {
    text-transform: lowercase !important;
}
 
.button-bar.modal-footer a.btn.btn-danger,
#owindow-1>div.content.modal-body>div>div>a {
    float: right !important;
    margin-top: -0.73rem;
}
 
td:nth-child(1)>a {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
}
 
/* MISC > BUTTONS */
 
/* ======================= */
 
a.btn.btn-danger,
a.btn.btn-primary,
.btn-small,
#owindow-1>div.button-bar.modal-footer>a,
#edit-cancel-button,
#edit-diff-button,
#edit-preview-button,
#edit-save-draft-button,
#edit-save-continue-button,
#edit-save-button,
#owindow-1>div.content.modal-body>div>a.btn.btn-default {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600 !important;
    font-size: 0.75rem;
    color: white;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 7px;
    padding-right: 9px;
    background: rgb(20, 20, 20);
    border-radius: 2px !important;
    cursor: pointer;
    width: fit-content !important;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    margin-left: 0.3rem;
    margin-right: 0.35rem;
    float: left;
}
 
a.collapsible-block-link:hover,
a.btn.btn-danger:hover,
a.btn.btn-primary:hover,
.btn-small:hover,
#owindow-1>div.button-bar.modal-footer>a:hover,
#edit-cancel-button:hover,
#edit-diff-button:hover,
#edit-preview-button:hover,
#edit-save-draft-button:hover,
#edit-save-continue-button:hover,
#edit-save-button:hover,
#owindow-1>div.content.modal-body>div>a.btn.btn-default:hover {
    text-decoration: none;
    background: rgb(45, 45, 45);
}
 
#action-area > p:nth-child(5) > a:hover {
    text-decoration: none;
    background: rgb(45, 45, 45);
}
 
#action-area > p:nth-child(5) > a {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600 !important;
    font-size: 0.75rem;
    color: white;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 7px;
    padding-right: 9px;
    background: rgb(20, 20, 20);
    border-radius: 2px !important;
    cursor: pointer;
    width: fit-content !important;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    margin-left: 0.3rem;
    margin-right: 0.35rem;
}
 
/* ======================= */
 
#footer,
#license-area {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}
 
#page-content div.collapsible-block {
    margin-top: 13px;
    margin-bottom: 13px;
}
 
div.collapsible-block-content {
    animation: fade 0.4s;
    animation-fill-mode: forwards;
}
 
.avatar-hover {
    display: none !important;
}
 
/* MISC > FOOTNOTES */
 
/* ======================= */
 
.hovertip {
    background: rgb(25, 25, 25) !important;
    border-radius: 2px;
    padding: 5px 5px 5px 5px;
    color: white;
    font-family: 'Work Sans', sans-serif;
    max-width: 400px;
}
 
.f-heading {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 80%;
}
 
.footnotes-footer .title {
    font-size: 0px;
    color: transparent;
    margin-bottom: 15px;
}
 
.footnotes-footer .title:before {
    content: "Footnotes \0026  References";
    color: rgb(25, 25, 25);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 0.9rem;
    font-family: 'Work Sans', sans-serif;
    cursor: text;
}
 
.footnotes-footer a {
    color: black;
    font-weight: 700;
    font-family: 'Work Sans', sans-serif;
}
 
.footnotes-footer {
    border-left: solid 3px rgb(20, 20, 20);
    padding-left: 15px;
    margin-top: 6rem;
}
 
.footnote .f-footer,
.equation .e-footer,
.reference .r-footer {
    display: none;
}
 
/* ======================= */
 
#page-options-container a {
    color: rgb(45, 45, 45);
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    font-size: 90%;
    text-transform: uppercase;
}
 
#page-options-container a:hover {
    text-decoration: none;
    color: rgb(2, 2, 2);
}
 
#page-info-break {
    height: 3rem;
}
 
#files-button::before {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/btn-files.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "  ";
}
 
#edit-button::before {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/btn-edit.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "  ";
}
 
#history-button::before {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/btn-history.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "  ";
}
 
#print-button::before {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/btn-print.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "  ";
}
 
#view-source-button::before {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/btn-source.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "  ";
}
 
#discuss-button::before {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/btn-discuss.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "  ";
}
 
#site-tools-button::before {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/btn-tools.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "  ";
}
 
#tags-button::before {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/btn-tags.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "  ";
}
 
#pagerate-button::before {
    background: url(https://scp-wiki.wikidot.com/local--files/theme:basalt/btn-pagerate.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: "  ";
}
 
.code pre,
.code p,
.code,
tt {
    font-family: 'Fira Code', monospace;
}
 
#account-options {
    border: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    width: fit-content;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 30%);
    padding: 5px 5px 5px 5px;
    text-transform: uppercase;
}
 
#account-options a {
    filter: grayscale(100%) saturate(0%);
    -webkit-filter: grayscale(100%) saturate(0%);
    color: grey;
}
 
/* Anendlessusername's invaluable correction of the ACS octagon! */
#page-content .quadrants>div {
    top: 2.25%;
    left: 18.5%;
}
/* WHEN YOU SEE IT... */
 
.licensebox .collapsible-block-link,
.licensebox .collapsible-block-link:hover {
    background: none;
    text-transform: uppercase;
    font-weight: 700;
}
 
/* ---- WORDS NO LONGER BROKEN, THE CROQUEMBOUCHE HAS SPOKEN ---- */
 
#page-content span, #page-content a {
    word-break: normal !important;
}

[[/collapsible]]
[[/=]]
: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
Chair

Instance of SCP-XXXX.

Item #: SCP-XXXX

Object Class: Safe

Special Containment Procedures: SCP-XXXX instances are to be stored in a secure space; access to a desk is to be limited solely for testing purposes and under no circumstances should the projections be allowed access to the internet. SCP-XXXX-A is to be kept in a standard humanoid containment cell, with access to a desk and office supplies. Due to the nature of SCP-XXXX-A, common humanoid containment procedures are unnecessary.

Description: SCP-XXXX is a collection of office chairs that exhibit anomalous behavior when placed in proximity of a desk. All instances of SCP-XXXX possess markings that generate an instance of SCP-XXXX-1 when viewed. The effects of SCP-XXXX cease when it is taken away from a desk, with the maximum recorded distance between an instance of SCP-XXXX-1 and a desk being 1 meter.

SCP-XXXX-1 is a projection that manifests by viewing the markings on an instance of SCP-XXXX. The markings on the chair alter the perception of all affected individuals to perceive a human being sitting on it. This projection of a human being is able to identify itself and give basic information about itself, primarily information that would be asked of it to complete paperwork. No instance of SCP-XXXX-1 has been able to give out data that matches their physical appearance, which matches no known individual. SCP-XXXX-1 is able to become tangible when interacting with other objects in its vicinity.

All instances of SCP-XXXX-1 have displayed basic knowledge of the organization they are employed in, although interviews with these projections have been hindered by the inability of SCP-XXXX-1 to discuss anything unrelated to office work. These projections have been able to accrue promotions within their own organizations, displaying an ability to follow orders and complete paperwork while being unambitious. The public nature of their positions hindered retrieval in some instances.

SCP-XXXX-A is a leather recliner bearing similar markings to instances of SCP-XXXX, and it is believed to be an attempt to upgrade the design and capabilities of SCP-XXXX. SCP-XXXX-A is capable of displaying an instance of SCP-XXXX-2.

SCP-XXXX-2 is a projection capable of independent thought that has claimed it was formerly a human. It has retained the appearance of its former body. The markings that would allow it to become tangible are incomplete, resulting in an inability to move objects. SCP-XXXX-2 has identified itself as the creator of all known instances of SCP-XXXX, albeit the method through which they gathered the necessary knowledge to create the objects or transfer their consciousness into another body is as of yet unknown.

Recovery: During a routine inspection of several Foundation fronts in the ███████ area, an instance of SCP-XXXX was flagged for memetic symbols and consequently retrieved by Foundation Agents. The address given by SCP-XXXX-1 when hired revealed SCP-XXXX-A under the same conditions. Subsequent instances of SCP-XXXX were found by looking at other employees that had the same address listed in their employment record.

Addendum-XXXX-1: Positions held by instances of SCP-XXXX-1

COMPANY POSITION
███████ Investment Firm Chief Investment Officer
███████ Department of Transportation Accountant
███████ Pharmaceutical company Quality Control Manager
Safe Capital Projects LLC. Managing Director

[[footnoteblock]]


Wow! You flipped a card and got: Gggg!!! You ca reload the page or go to the next.
DATE: 13 Jul 2021 20:12
Wow! You flipped a card and got: The Obsidian Judge!!! You ca reload the page or go to the next.
DATE: 13 Jul 2021 19:17
rating: 0+x

Interviewed: SCP-6196

Interviewer: Dr. Robyn Rexler

Foreword: Interview proceeding recapture of SCP-███ as well as the apprehension of SCP-6196

<Begin Log, [Time-2200]>

Dr. Rexler: Can you state your name for the log?

Foreword: Individual looks confused; squinting and tilting its head to the right.

Dr. Rexler: You offered yourself for containment—Did you know where this site was located prior to arrival?

Foreword: Individual becomes curious; leaning forward in it's chair and moving it's lips as if sounding out words.

Dr. Rexler: Are you—capable of speech?

SCP-6196: I am—when it is advantageous for me.

Foreword: Individual speaks with a deeply African dialect.

Dr. Rexler: What advantages could you garnish from capture?

Foreword: Individual falls back in its chair and chuckles before flashing a set of razor sharp canines toward Dr. Rexler

SCP-6196: I am hoping it will be time—well spent.

Foreword: Dr. Rexler visibly relaxes in their chair; smiling engagingly toward the individual.

Dr. Rexler: Who are you? Why are you here?

Foreword: Individual adjusts in its seat, then speaks out again.

SCP-6196: I am called Inkolo. But I wish to answer your question with a question.

Foreword: The Doctor is visibly concerned; furrowing their brow inward and staring at the individual.

SCP-6196: Can you tell me why you’re here?

Foreword: Doctor glances down toward their notepad and scribbles a short passive while speaking.

Dr. Rexler: I'm here to interview you before we place you into containment. I was sent in to gauge and test your mental stability as well as your overall threat level.

Foreword: Individual chuckles; which reverberates off of the walls of the interrogation unit.

SCP-6196: Tests—Life is made up of tests, you know; tests of strength, tests of will, tests of patience. Tests that always lead to one place, prosperity and abundance. But for prosperity to exist, humanity and nature must live in a—harmonious syncopation with one another.

Dr. Rexler: And you believe that this—syncopation is possible?

Foreword: Individual smirks; baring the harsh edge of its canines once more.

SCP-6196: That, dear Robyn, is why I am here. It seems you and I have adjourning interests, Dr. Rexler. For you see, you may think you’re here to test me. But it is I who is here to test all of you…

<End Log, [Time-2255]>

Closing Statement: In closing interviews, Dr. Rexler spoke of how the individual made them feel at ease; as if talking to an old friend or family member.


Item #: SCP-6196

Object Class: Thaumiel/Keter

Special Containment Procedures: Containment Area 46A (Site Fifty-Eight) is 800 acres of land at the heart of Africa; Between [DATA EXPUNGED] The [DATA EXPUNGED] As well as the [DATA EXPUNGED]

Containment Area 46A is to be constructed with the following components:

  • Reflective Holographic Panels made up in the shape of a dome around the perimeter. All panels reach a critical peak point and are to be regulated by an oscillator.
  • Four Administrative and Support Area's (ASA) consisting of support facilities and living quarters for on-site staff; located at [DATA REDACTED] of the complex.
  • Four Olympia Class Containment Units supplemented with reality anchors (Located within the dome and stationed at the [DATA REDACTED] ASA's)
  • Outer Complex Security detail as well as surface to air missiles (SAM) on each side of the site; accompanied by automated tracking hardware.
  • Six [DATA REDACTED] Fighter Jets ( Deployed from a Foundation Freighters off the coast of the South African and Indian Oceans.)
  • Three Fifty Megaton Nuclear Warhead's

Any and all security personnel should be cycled out regularly; as well as all surrounding monitoring personnel. Update's to all equipment are mandated weekly; to result in optimal reaction time. Any
complaint of mental suggestion, or "Calls to arms" by personnel, is subject for immediate interview and amnestic application; if needed.

In the result of SCP-6196's activation, all on-site personnel are to be outfitted with ██-██ Assault Rifles; as well as miniaturized [DATA REDACTED] Anchors. These devices are to be activated at the first sign of PATMOS XK End of the world Scenario. Surrounding Countries, as well as the necessary major political figure heads, are to be notified of impending threat. If unable to re-contain or in the result of the execution of SCP-6196-5, detonation of on-site 50 Megaton Nuclear Warhead's is approved; which will result in the deaths of all on-site staff, Flora and Fauna.


Description: SCP-6196 consist of Six components: Four floating obsidian monoliths (SCP-6196-1 through 4) a free roaming humanoid entity (SCP-6196-5) And an edged, Obsidian blade in the shape of a greatsword. (SCP-6196-6)

SCP-6196-1 through 4 are all 228.6 m obsidian black, crystal reminiscent monoliths (500 cubits from base to peak). They are encrusted with 6 massive golden runes that are situated 80 m apart from each other; appearing to scroll down the faces of the monoliths [3 of which currently emit a glowing white light]. They are positioned exactly 100 m off of the ground and 64 m apart from one another. They have been seen rising and falling in a syncopated pattern, starting from the furthest left monolith; often letting off a low gravitational hum that will lift object and loose debris off of the ground in the surrounding area; sending it in a rotational spiral around the monoliths outer casing. The monolith grouping has a 2 km perimeter to which any and all personnel, minus SCP-6196-5, are prohibited from entering at any time.

SCP-6196-5 (Designated "Inkolo") is akin to a stocky, muscular african male in his mid twenties; who stands 2.69 m in height. He has chocolate brown skin, a bald head, with a large tightly curled, jet black beard. Although humanoid in look and feel, if turned at the right angle or if anomalous traits are activated, the being begins to shimmer an obsidian hue and feel like hard crystal; often looking more stone like than human. It speaks with an african dialect that predates most african languages; to which it has spent a great deal of time and has an expansive knowledge of, often referring to Africa as "Alkebulan". It's body consist of several runes that show similarities to SCP-6196-1 through 4 (The feet and chest runes glow a white light, while the hands and head runes remain dormant.) When angered, the lights will shine brighter, and the rune placed on the forehead will flicker as if attempting to activate.

In interviews, SCP-6196-5 has displayed high levels of intellect; often speaking with researchers about old literature or asking questions about other entities. It's favorite pastime is sitting with Director Creed and discussing the extent of SCP-6196 primary mandate; the final judgement of the human race. Director Creed often calls into question the “humanity” of 6196 to which it choreographically reply’s that “Its humanity is the reason it was chosen as Judge, jury and executioner”.


Journal Entry: Director Lucifer Creed
Subject: SCP-6196-5

These entities get stranger and stranger every year. Now we have a being that believes it is the last and final judge of humanity? What an ego driven concept. How can one being place its own sense of morality on the collective expanse of the world? Who gives it the right to rule over our day to day decisions, and gauge whether or not they are just? We don’t need judgement, we need order.

SCP-6196-5 has stated in interviews that it is well over 3000 years old, and can recollect a great deal information from its journey's across the earth.

Examples: SCP-6196-5

  • It speaks of its time in Rome during its collapse often referring to it as "A failure to sustain a paradise society."
  • It speaks of the various slave trade's and the choices of man to create subservient beings out of their fellow race. "The world was attempting to evolve, but subjugation only creates a fissure in the connectivity of people; and that split has left a ripple in history."

SCP-6196-5 claims to be "One of five chosen hands of chaos" and that, because of this "Birthright", it can feel when other entities like itself are nearby. This trait was later renamed "Battle Sense" By Site 58 Director Lucifer Creed. SCP-6196-5 has no recollection of how it came to be, only that there has "always a phrase in my head that spoke of the warriors that walked the ancient sands…" As well as a list of instructions; which include a destination (The Location of SCP-6196-1 through 4). In an interview with Dr. Ulysses J. Colepepper, SCP-6196-5 suddenly remembered another phrase. "The Kings of old have found new shells that shape them into the universe…" Hours after the interview, Dr Colepepper is heard repeating the phrase over and over in a staccato, almost trance like, manner; suddenly finishing it, stating "Let he who walk among their trails, be taken under his will." He later said he had no recollection of ever saying that phrase, nor what it meant; an event that lead to the discovery of SCP-6196-5 Memetic Hazard.

It has enhanced human abilities including, but not limited too:

  • Heightened Human Speed (Covering a distance of 80 m in a matter of two (2) seconds)
  • Heightened Human Strength (Lifting and tossing a tank (60 Tons) a distance of 4 m)
  • Heightened Senses (Sight, Hearing, Smell, Taste and Feel are all greatly exaggerated with SCP-6196-5 having seen, heard, smelled and felt a Foundation jet a distance of 8.20 km away.)
  • Enhanced Durability (Shifting its own personal body density to that of the obsidian monoliths; taking heavy missile fire without issue.)
  • Enhanced Personal Regeneration ( Has regenerated holes and missing limbs; first appearing as the obsidian stone in the shape of a the body part, before becoming fully realized as "Flesh")
  • Heightened Sense of Drive (The entity has been seen persevering through dangerous and life threatening events; such as when it was forced to fight several other instances while bombarded by sustained gun fire from a .50 caliber mounted anti-tank gun.)
  • Memetic Hazard. ( Has the ability to induce calm/rage/inspiration to all those who can hear its voice. This hazard overrides the effected individuals sense of rationality and almost forces them to act in accordance to SCP-6196's will (Dependent on if the individual is willing to cooperate or is resistant to the effect.)
  • "Battle Sense" Has the ability to sense other anomalous entities within a 2 km distance of itself; almost honing in on the apposing entity(s).

SCP-6196-6 is precisely 1.83 m tall from tip to pommel, and sits at a width of 1.2 ft. It is bonded obsidian, much like 6196-1 through 5, with a large rune situated between the hilt and blade. It gives off a low gravitational hum and the rune has been seen to activate when 6196-5 becomes enraged. The blade itself only responds to 6196-5's command; disappearing and reappearing out of thin air. SCP-6196-5 seems to bare a connection to the blade, and those who attempt to more or lift it, often drop under its immense weight (With variant levels of injury).

Conversation Log 6:
From: Dr. Simon Wintercrest
To: Director Lucifer Creed
Subject: SCP-6196-5/6

We tried to lift the damn thing, but it wouldn’t budge. Then when we asked 6196-5 to move it for us, it laugh; telling us “If you wish to move my blade, you must first give up what gives you power…” what the hell is that even supposed to mean? Please advise.


From: Director Lucifer Creed
To: Dr Simon Wintercrest
Subject: Re: SCP-6196-5/6

The blade itself has to be an extension of SCP-6196-5; otherwise he wouldn’t be able to summon and dissipate it at will. He likes to think he’s an intellectual but he isn’t; so don’t let him get to you. Oh and the answer is pride…

Addendum 6196-a(1-4): Experimentation re: SCP-6196 (1-4) possible kill agents

  1. Experiment 1: 1 Class D Personnel was instructed to move toward the monolith grouping.

Result: The entities began to hum loudly; thrumming in sequential order, from left to right. The D-class was instructed to stop, but seemed to be in a trance like state. Class D made it within a distance of 2 m before being lifted off of the ground and torn in four pieces; the body parts were individually draw into each of the monoliths, touching against its surface before disappearing inside. Reevaluation of test approach imminent.

  1. Experiment 2: 4 Class D Personnel were given recording devices and instructed to cross into the monolith grouping.

Result: Similar to the previous experiment. The Class D's stepped within a 2 m radius of the grouping, and were lifted into the air before being drawn toward the monolith's; touching the surface and disappearing inside. Camera feed disconnected upon envelopment.

  1. Experiment 3: An MTF squadron was released into the containment area and told to use automatic fire on the monoliths (aided by [DATA EXPUNGED] and 6 armored tanks.)

Result: Massive obsidian spikes appeared out of the ground beneath them; tearing through the on-site tanks (Spikes remain in place). Obsidian Golem's appeared out of the face of the obsidian spikes and tore apart the remainder of MTF's and their equipment. All of the bodies were drawn into the monoliths for unknown uses. Destroyed equipment was never retrieved. First set of runes activate at the base of the Monoliths.

  1. Experiment 4: Several missiles were fired from Foundation Freighters in both the South African and Indian Ocean's toward the containment zone.

Result: All missile detonated upon impact with the monoliths. Monoliths becomes partially translucent, and large cracks began to form on the surface of the structures; amorphous movement was observed taking place within the monolith shells at a distance of 2.5 km. The second glowing glyph was activated just above the last. Possible destruction method acquired.

  1. Experiment 5: In the coming weeks, researchers and personnel began complaining of voices in their heads, beckoning them to the containment zone.

Result: An emergency experiment was initiated after it was discovered that several Site 58 personnel were found standing just within 4 m of the monolith; their hands in the air as if in adoration of the structures. They were lifted into the air, but began to speak in unison "Four have come, One is last. Keeper of the blackened key. Turn the lock of godly hands and awaken the chaos kings." after which they are crushed into a mushy pink liquid, by unknown means, and drawn into the monoliths; The resulting action causing the shell to become opaque once more with repairs to the damaged portions concluding within four (4) hours. The third glyph was seen activating just at the conclusion of the last crack. Similarly, SCP-6196-5's runes on both feet and chest began to glow and activate permanently. No changes have been examined.

Conclusion: Due to description of the "last King" being adjacent to the description of SCP-6196-5, it is no longer permitted within the containment zone for anything short of SCP-6196's activation; an event it refers to as "The awakening of eternal duality" to which it explains that on that day of reckoning, it will be given its final choice. It will either have to awaken its brothers from their metamorphic slumber (Raining death and destruction in every corner of this galaxy) or choose the side of humanity and destroy the Obsidian judges for the good of mankind.

Addendum 6196-5-aa: SCP-6196-5 Voluntary Field Test
Test 1: Subject was told to defend itself against oncoming fire (D-Class firing squad equipped with assault rifles as well as 2 .50 caliber mounted guns)
Result: Subject summoned obsidian weapon and dispatched the firing squad; plunging its blade into one of the mounted guns before destroying the second by hand.

Test 2: Subject was asked to dissipate and re-summon its blade from one side of the complex to the other.
Result: Subject made the blade appear in several places; including Director Creed's office, which it previously had not seen, before summoning it to its hand.

Test 3: Emergency Test - Subject was asked to assist in the recapture of several escaped entities from site 58.
Result: Subject was able to re-capture instances of SCP [REDACTED] as well as SCP [REDACTED] with a missing left arm, holes in its torso and extremities, as well as missing chunks of its head. All body parts were later reconstituted within four (4) hours.

Journal Entry 17: Dr. Ulysses J. Colepepper
Subject: SCP-6196-5 Internal Conflict

SCP-6196-5 claims that the monoliths are all that is left of his former kin. During our interview, he explained that he believes at one point he and his "Brothers" were human, but were "Chosen by the fate's multiplicity." 6196-5 spoke about how initially it was their "job" to be "Heralds of judgement" and that they were to "Combat those who wish to disturb the flowing synchronicity." He claims to not view the Foundation as a threat; suggesting that many of our ideals align in the grand scheme. He went on to say that there have been several others like the Foundation, over his time-span of 3000 years, and that there will always be more; claiming that it would eventually topple like any other erected tower of justice.



Addendum 6196-5-b: SCP-6196 Involvement with MTF Squadron [DATA EXPUNGED]
Details: [DATA REDACTED]

Interviewed: SCP-6196-5 "Inkolo"
Interviewer: Director Lucifer Creed

Foreword: Both individuals stare at each other for two (2) full minutes of silence.

Director Creed: Y'know, I've been calling my own morality into question as of late; and I've come to some startling yet eye opening revelations…I don't believe you're truly a judge of humanity.

<Begin Log, [Time-1633]>

Foreword: SCP-6196-5 furrowed its brow inward.

SCP-6196: And why is that, Director Creed? Is it because of my faults? Is it because you still believe that I am so far above humanity, that I couldn't possibly judge a race of sentient beings without first having been one? Do you truly think so little of me?

Foreword: The Director leans back in his chair; and interlocked his fingers before placing them on his abdomen.

Director Creed: I think the reason why you can't be a judge of humanity is the same reason you're still lining the fence on whether, as a whole, we are good or evil. The world is made up of grey area's and we all fall into them—even you.

Foremost: SCP-6196-5 sits in silence; a smile slowly creeping across its face as it listens to the Director speak.

Director Creed: Look at you. With all of that power, and all that time spent on earth, you are still clinging to the idea that humanity has the capability to be better than it is; that it can reach the—synchronicity you talk about.

SCP-6196: Even so, how does that make or break my role as the final word?

Director Creed: Because we feel similarly to you—every single day. We make choices based off of what information we are given. We don't have power, like you or any of these other instances. We feign what we have to keep the status quo.

Foremost: SCP-6196-5 leans forward toward the Director; staring at them while squinting its eyes.

SCP-6196: So you're saying its pointless to decide your fates…

Foremost: SCP-6196-5 extends its right arm out a few meter to its right hand side; suddenly summoning its bladed weapon.

SCP-6196: That humanities overall fate is to perish without a trace. If your lives are so meaningless, then why continue the facade? Why does the Foundation do everything they can to make sure humanity continues without knowledge of beings like myself? We could end this world and have ended it a thousand times over; so why continue?

Foremost: The tip of the blade clunks forcibly into the ground. The Director doesn't react; staring back at SCP-6196-5.

Director Creed: You know the answer to that question…

SCP-6196: …Indulge me.

Foremost: The Director opens his mouth to speak but is interrupted by SCP-6196-5.

SCP-6196: Careful which words you choose, Director. You speak on behalf of all of the human race…

Foremost: Interruption - containment breach initiated. Interview concluded.

<End Log, [Time-1703]>

Closing Statement: A quote from Director Creed "The indecision of SCP-6196-5 is both concerning—and relieving to witness. Heaven knows if we've made an impact on his decision; but only time will tell."



[[footnoteblock]]


Wow! You flipped a card and got: bluerayne!!! You ca reload the page or go to the next.
DATE: 13 Jul 2021 19:05

"Consequences Repeating"

Item #: SCP-XXXX-1

Object Class: Safe, Contained

Special Containment Procedures: SCP-XXXX-1 is confined to one SCP facility. SCP-XXXX-1 is not visible to personnel guarding the facility, village or surrounding area. The only evidence of SCP-XXXX-1's existence are static filled messages received nearly monthly by the research director at the regional SCP facility. SCP-XXXX-1 is not well understood but is self-contained and considered safe.

Description:
SCP-XXXX-1 refers to SCP facility [REDACTED] located seven miles northwest from the unincorporated Village of [REDACTED], population 1,575 as of the last United States census, in the upper midwestern United States. In September 1976, all Foundation employees inside SCP facility [REDACTED] as well as the Village of [REDACTED] entire population vanished.

cell-content
A small female child is found wandering a rural midwestern neighborhood. The local police department is swamped with calls from residents reporting a "little girl appearing out of thin air." A SCP field agent embedded in the police department feels something about the description of the child's sudden appearance is strange and takes her to the local SCP facility for further investigation.
51334332577_2ce124fab9_n.jpgPhotograph of Female Child

The girl is well groomed, appears well nourished, and is dressed appropriately for the local weather. She states she does not know her age, but it was later determined by the facility doctor and dentist she is approximately five or six years old. She also does not know her first name, if she has parents or siblings or how she ended up in the neighborhood she was found in.

Standard video taken of the intake process shows the research team assigned to the female child entering the containment room. Video shows a young, female researcher initially staring at then moving into the room and standing next to the child. The researcher appears to have a near-syncopal episode and is helped out of the room by a co-worker. Video ends.
51335064661_0c362f0223_m.jpgPhotograph of Foundation Researcher

Addendum:
Wow! You flipped a card and got: Kelmatton 1!!! You ca reload the page or go to the next.
DATE: 13 Jul 2021 18:06

rating: 0+x

Item #: SCP-XXXX

OBJECT CLASS: Euclid

SPECIAL CONTAINMENT PROCEDURE: SCP-XXXX is to be kept in an ordinary D-class cell with 2 guards immediately outside the cell. Level 3 or higher clearance is required to gain entry into the cell.

DESCRIPTION:

SCP-XXXX is a D-class personnel, male, standing at 1.8 meters tall, and weighing about 125 Kilograms.

SCP-XXX was discovered when it, along with 2 other D-class personnel were doing a routine clean up of SCP-173's cell. During the cleaning, while it was still watching SCP-173, the other D-class sneezed, which caused him to blink, and 173 moved to snap their neck. SCP-XXXX had full eye contact, and witnessed it moving to kill the 2 D-class in 173's cell. If SCP-XXXX didn't immediately scream in terror, shouting that 173 wasn't behaving normally, SCP-XXXX most likely would have died there. However it's screaming got the attention of the guards, whom immediately took SCP-XXXX to a new cell.

Dr. [Redacted] looked at a recording of what happened, and realized that SCP-XXXX was, potentially, anomalous. Dr. [REDACTED] desired to have SCP-XXXX tested with SCP-096 to see what would happen, with his reason being that, if the D-class wasn't anomalous, nobody would really care if it died.

When SCP-XXXX examined a photograph of SCP-096's faces, Dr. [REDACTED] checked with the guards to see if 096 was reacting. To everyone's surprise, 096 didn't react to SCP-XXXX seeing it's face. This revelation caused several questions that Dr. [REDACTED] wanted answered.

Dr. [REDACTED] didn't know if SCP-XXXX was immune to all anomalies or only specific ones. He requested to do a cross test with SCP-999, suggesting this test could figure out if SCP-XXXX was immune to all anomalies or just certain ones. When SCP-999 made contact with SCP-XXXX, it reacted exactly as everyone does when SCP-999 touches someone, even going so far as to play "tickle fight" with it. This shows that SCP-XXXX has limits on what he is and isn't immune to.

Dr. [REDACTED] came up with a theory based on this one test, the theory being that SCP-XXXX is only immune to any affect that requires SCP-XXXX to actively do something, which he referred to as "active anomalies" in his report, while "static anomalies", or anomalous effects that don't require SCP-XXXX to do anything, can affect him.

Further tests seem to prove this theory. When cross tested with SCP-035, SCP‐XXXX did experience the urge to put on the mask, but when he did, SCP-035 was unable to possess his body. However, SCP-XXXX did end up requiring medical treatment for the corrosive liquid, but ultimately survived.

It should be noted that Dr. [REDACTED] made a request to cross test SCP-XXXX with SCP-682 since he theorized SCP-XXXX's anomalous capabilities could potentially allow it to kill 682. Dr. [REDACTED]'s request to cross-test with SCP-682 was denied, and all further requests to attempt cross-testing are to be denied due to the cruelty of the nature of cross-testing, as SCP-XXXX does not have any ways to actively harm SCP-682. However, if a way to keep SCP-XXXX alive while cross-testing is discovered, this restriction will be lifted.

Further cross-testing has been deemed necessary, and shall be done when possible in the future, however all cross-testing involving SCP-XXXX requires approval and a security clearance level of 3 or higher.
Wow! You flipped a card and got: Erminustay!!! You ca reload the page or go to the next.
DATE: 13 Jul 2021 14:16

rating: 0+x

$Amigo,$ $get$ $behind$ $me!$
Item #: SCP-X
$Get$ $out$ $of$ $here!$ $Scram!$
Object Class: Safe
$*Bang*$
Special Containment Procedures: SCP-X is to be kept in storage unit J-G4 at site-11 at all times. If a copy of SCP-X's contents are required for any reason, please inform the storage facility 11-J manager.
$Ah!$ $get$ $off$ $me!$
Update [16/4/2012]:
$*Bang*$
After the events of 11J-LLK, More surveillance has been installed in the vicinity of SCP-X, such as the instalment of security cameras and the employment of security guards to both monitor storage unit J-G4.
$Huff...$ $It's$ $okay$ $Amigo,$ $they're$ $gone$ $now...$ $What's$ $wrong$ $Amigo?$
SCP-X-1 requires a combat submarine with both high stealth capabilities and high offensive capabilities to silently monitor all vessels and/or entities coming in or out of SCP-X-1, along with a patrol of high ranking navy militia surrounding SCP-X-1 at all times.
$What!?$ $Amigo...$ $I$ $had$ $no$ $idea…$ $wait,$ $what$ $are$ $you$ $doing?$
Description: [Paragraphs explaining the description]
$Put$ $that$ $down$ $right$ $now.$ $Put$ $it$ $down$ $Amigo!$ $Amigo$ $stop!!$
Addendum: [Optional additional paragraphs]
$*Bang*$

Vampiric anglerfish, because edgy.


[[footnoteblock]]

Addendum 01

Into The Storm




Addendum 02

Down In The Depths




Addendum 03

My Name Is Amigo




Addendum 04

The Edge Of The Sea




Addendum 05

A Promise




Addendum 06

They Just Get Bigger




Addendum 07

The Trench




Addendum 08

𝒜 ℬ𝓁ℴℴ𝒹𝒾ℯ𝒹 𝒩ℴ𝓉ℯ




Wow! You flipped a card and got: Untitled-02!!! You ca reload the page or go to the next.
DATE: 13 Jul 2021 14:01

The lonely man in the gray jumpsuit ran down the corridor away from the monster he had left behind him. It wasn't the monster he was afraid of, but the men in black who came to take care of the monster. He had no idea why he was afraid of them, but there was an instinctual urge to run, run as far away as possible, to run until he had no legs to run and then to run some more. They weren't like the men before, these men were clad head to toe in black and somehow emanated evil from every pore of their sick, miserable bodies. They had strange green apparatuses over their eyes, with patches of red across their arms and orange lights flashing across their backs.

Perhaps the security offices would have picked up on the strange man dressed in janitorial uniform covered in blood running with a firearm down a hallway, however all site members were more preoccupied with containing the previous entity, with security monitoring surface level entry to determine any foreign intrusion and keeping an eye on main access points to make sure that the entity would stay relatively contained.

A security guard would, a week later, take notice of the crazed man, however due to a simultaneous interger overflow error from a seperate recording system, it was determined to be nothing less then a technical oversight of hardware contamination, and the records were shipped off to be burned.

Perhaps the site-wide AI would have taken notice, but for some inexplicable reason, it consciously edited out its own memory from the hours of 1502 to 1508 under the pretense of a system error and subsequent reboot to remedy the error. When questioned as to its overall timing with the aforementioned security breach, AI denied all ties to the breach of containment, which so happened to be true.

The researchers questioning the AI, however, failed to think of any other motive a sentient being would for rebooting autonomously, so they jotted it down as a system mishap, and taking into consideration the short period of time the AI was inactive, overlooked it entirely.

But those 6 minutes were more then enough.

The lonely man in the gray jumpsuit took a sharp left, the white fluorescent lights replaced with a dangerous flashing red. The corridors were empty, and the noise of his footsteps was masked by the constant thundering of alarms. He finally found a bathroom, designated for "researchers". Normally he would never be allowed in here, but he wasn't sure if he was ever going back to his previous job either way, so he quickly slipped inside, and found to his surprise that the janitorial keys locked these bathrooms as well.

Safe inside the lime-colored room, he overlooked the immaculate stalls, the shining faucets and the pleasantly warm light emanating from the fixture on the ceiling. He looked behind him and noticed that he didn't leave any footprints behind him, giving him a little closure that he would be safe for at least a little while. He methodically counted the number of rounds within the pistol before setting it down on the bathroom sink.

18.

18 bullets left.

And he was in the middle of a facility god knew where.
Surrounded by people he was scared of.
In a bathroom that would be noticed within 30 minutes tops.

Taking in the situation, the man started to tremble a little, but steeled his nerves. He stared into the mirror for the first time in years and saw his face. He didn't know the man in the mirror, but perhaps he never really knew him to begin with. Fumbling around in his coat pockets, the man found a switchblade, the only weapon he ever managed to scrounge around. Not that he actually remembered how he came across it, but he remembered feeling fond of a different type of knife altogether…

With nothing much left to do, he took off his jumpsuit and shirt, stuffed them in the sink, and let the water run. Perhaps he didn't have much time, but he wouldn't be running around in bloody clothes. Not around this place anyways. He grasped for the knife and slowly started cutting away at the hair on his face. He started to scrape away the residual hairs when he saw what he actually looked like.
Staggering back a bit, he fell flat on his butt, before shaking his head. He was beginning to remember bits and fragments, but nothing coherent, nothing that made sense. He cut away what was left of his overgrown beard, then started on his hair, before stopping. For some reason he liked his longer hair, so he left it be, tying it back with a piece of wire before finally taking a proper look at himself. He was probably 20, which was surprising, given the dirty and unkept state he was in, and adding the beard when he first came into the bathroom he would have given himself over 35 if not 40. His broken and cracked voice didn't help either, not that he spoke much to begin with. He remembered having a softer voice, once upon a time, and it gave him a little hope to think that he might regain it if he started singing again.

Singing? Since when did he sing? The man shook his head. He stepped back to look at his body. Covered in scars, yet somehow quite soft and thin. He definitely wasn't part of any military or fighting force, that was for sure, not like the men in the containment cell, and definitely not like the men in black. Then why was he so well trained with a gun? Why did he manage to react better then the two guards who died right in front of him?

He didn't understand, but understanding was something he didn't need at the moment anyways. He pulled the white t-shirt and jeans he wore under his jumpsuit on anyways. He took out his knife, tore up the old jumpsuit, and flushed it down the toilet. He was sure that site filtration would most likely pick up the remnants.
As he was cleaning up the residual bloodstains he noticed he had nicked his wrist earlier in the confrontation with the monster. It wasn't bleeding profusely, but it was noticeable enough; the constant trickling would bleed him dry if he didn't do anything to stop it.
But for some reason, the warm crimson gave him a feeling of relief, perhaps even joy. He knew that he needed to close up the wound and get a move on, but a nagging feeling in the back of his head told him not to. He slowly started descending into a black fog, wrapping around his mind as he started poking and prodding at the cut, widening it to see how far it would stretch, before noticing scar marks littered across his arms, oh so very similar to the open wound he had now. He smiled. He smiled for the first time in at least a year, when he thought this whole madness started. His smile grew wider and wider as his pupils dilated, ignoring the alarms shutting off and the voice announcer shouting over the PA system.

In a moment of sheer reflex, he put the blade to the bleed, and cut deep in a single, well rehearsed motion. For a moment the pain snapped him out of his mindset, as the horror of his impending death set upon him, but slowly the inevitability of it all set in, and the man in the gray jumpsuit faded away, leaving only the manic boy in the bathroom, alone. The boy cutting again and again, slowly delving into a manic laughter with each stroke of his hand, his vision slowly narrowing as the blood loss started affecting his eyesight, the sway of his step increasing as he started slowly spinning around and around, blood splattering on the immaculately kept walls, his laughter growing louder and louder as he felt happier then he had in his entire life.

He remembered how much of a failure he was, what kind of a messed up psycho he was, as the voices started slowly trickling back into his skull, voices he had hoped once upon a time long long ago to be rid of, slowly overtaking him once more.
Wow! You flipped a card and got: Flagsam Test!!! You ca reload the page or go to the next.
DATE: 13 Jul 2021 13:49
Wow! You flipped a card and got: lawldewm!!! You ca reload the page or go to the next.
DATE: 13 Jul 2021 08:17

rating: 0+x

WARNING: THE FOLLOWING FILE IS LEVEL 2 CLASSIFIED AND IS FOR RESEARCH PURPOSES ONLY.


ANY ATTEMPT TO ACCESS THIS FILE WITHOUT LEVEL 2 AUTHORIZATION WILL BE LOGGED AND WILL LEAD TO IMMEDIATE DISCIPLINARY ACTION. IN CASE YOU REQUIRE ANY REDACTED INFORMATION, PLEASE CONTACT YOUR SUPERVISOR.


4075436251_608550e26c_b.jpg

First known photograph of the tree. Date taken: Unclear

Object Class: Safe

Special Personnel Requirements:

Security officers on site must:

  • be female
  • be widowed
  • having birthed a child in the past

No specific requirements for Monitoring personnel, although the same characteristics as those of Security officers should be present when possible.

Special Containment Procedures: Constant monitoring of a 1 km perimeter around the object with minimum assigned personnel of two female widowed Security officers with children is to be maintained. Multiple intranetworked CCTV equipment is to be set up and serviced as to provide constant video surveillance of the site. One agent located within the village of Matenitsa, monitoring the anomaly and reporting in intervals of 30 minutes (when within 2 days of a waxing to full moon or waning after a full moon) or 24 hours (at all other times), due to the nature of SCP-XXXX-1 instances. When specified personnel is unavailable, it's best to establish a perimeter with a radius of 3 km of SCP-XXXX, frequently patrol the trail and turn away any civilians under the pretext of a natural disaster or animal attacks, that makes the zone unsafe.

Due to the nature of SCP-XXXX-1 instances, children that have begun to exhibit secondary sexual characteristics, females that lack children or partners, are wedded, in relationships or otherwise not widowed, are to be denied entry under any circumstances. When impossible, the Sladuk ruchey trail should be blocked by means of physical obstacles, such as tree trunks, large boulders and shrubbery of the Juniperus oxycedrus species, blue marking lines should be removed from trees and any marking stones should be destroyed. There are no other known trails that lead to SCP-XXXX. The natural density of the forest keeps SCP-XXXX undiscoverable in any other way. The specificity of appearance of SCP-XXXX and SCP-XXXX-1 provides with a 99.9% certainty undiscoverability, even with the trail unobstructed, but extra measures should still be taken that instances of SCP-XXXX-1 be kept away from locals, tourists, civilians and unauthorized personnel by any means necessary.

The local water sources that are located in close proximity to SCP-XXXX should be surrounded by specimens of Juniperus oxycedrus, which are to be maintained by on-site personnel.

A disinfo campaign should be prepared and constantly broadcasted to Bulgarian communication channels. The specifics of the broadcast are described in detail in SCP-XXXX-P1 and should be followed to a reasonable degree.

Description:

SCP-XXXX is a an anomalous object located in the Sredna Gora mountain range in central Bulgaria.

Coordinates: [REDACTED]

The object is in the form of a tree stump. The original tree was an Quercus robur, genus Quercus, widely spread across the whole continent. As seen in the photograph of the tree rings, taken and described by Dr. Simone Derma, the dendrachronology dates the original form of the object as at least seven centuries old, which is within the expected lifespan for this species. The stump is an ovaloid, 9m 18 cm at it's widest part, and 3m 94cm at it's narrowest. The original oak tree has been cut at an angle of 7 degrees and at 47cm from the ground. The cut is clean, without any visible saw or burn marks. There appear to be no other flora or fungi surrounding the object, which is unusual for the genus. Expected mossing and fungification of the bark is absent. There are a 4 burn spots that seem to be from the previous Foundation attempts at containment. Other burn marks have faded, leaving little to no trace from containment attempt SCP-XXXX-а.

36827597200_663612de6c_b.jpg

SCP-XXXX-2. Date taken: June 16, 1983

Echo surveillance suggests a robust root system, reaching at least 50m underground. Soil analysis suggest that the roots are still functioning, extracting mainly nitrogen and water from the ground. Atmosphere composition in a 1.5m radius of SCP-XXXX:
N: 54%
O: 34%
H: 2%
Ar: 0,99%
Other:
The atmosphere analysis shows abnormal concentration of Bis(chloromethyl) ether around the anomaly. This compound is a know carcinogen. An unusual dopamine-like compound has been discovered with the analysis that, when inhaled, blocks D2 receptors and causes symptoms mimicking an acute psychotic episode. All personnel required to wear atmosphere-supplying respirator when approaching within 2m of interacting with SCP-XXXX or any of the instances of SCP-XXXX-1.

Nearby specimens have withered as of writing this report. Local fauna has been found expired in unusual for the location numbers as far as 45km away from the anomaly, with blood observed around the carcasses, including the mouth and snout. After autopsy, the cause of death has been determined to be a squamous cell carcinoma, originating in the lungs, causing internal organ rupture, respiratory failure or septic shock. The most likely cause of the cancer is the Bis(chloromethyl) present in the atmosphere around SCP-XXXX, although the spread and size of the cancers is inconsistent with the small radius in which the ether is concentrated. An insignificant amount of the chemical is expected to be breathed in as the animals pass around the anomaly, but it is highly unlikely that it would cause the formation of a cancerous mass of such size so fast.

34049124174_5319fe70a2_b.jpg

Photograph taken of the closest to the stump slice. Numbered and dated by [REDACTED]. Date taken: January 7, 1992

It should be noted that expired fauna seems to be all male.

Addendum 23S\\21 of xx\\xx\\xxxx: Due to incident, described in SCP-XXXX-I3, as of today all personnel required to wear atmosphere-supplying respirator when approaching within 2m of or interacting with SCP-XXXX or any of the instances of SCP-XXXX-1. The document has been redacted accordingly.

Procedures for analysis of soil and atmosphere around SCP-XXXX have now been triggered.

Addendum #2: Experiment logs


Addendum #3: Multiple folklorists dealing with local folklore have been questioned during the initial investigation, although for the sake of brevity, the interview transcripts have been omitted from this report. The academics seem to be dismissive of the anomalous nature of the object and proved of no use to the Foundation. Amnestics have been administered to all civilians involved.

Addendum #4:
It appears that local residents have multiple legends, songs and poems that reference either SCP-XXXX or it's instances - SCP-XXXX-1. It is noted that tales of SCP-XXXX-1 are much more prevalent throughout the geographical region, than instances of SCP-XXXX itself. Attached below are the two transcripts and translations of interviews that should prove useful for future reference.

Multiple folklore songs with minimum variance have been recorded and are stored for future reference at SCP-XXXX-L

Addendum #5:

Instances of SCP-XXXX-1 have been observed performing purposeful, repeating sequences of movements and gesture around SCP-XXXX.

Addendum #6:

The trunk and crown of the original tree that has been cut from SCP-XXXX has been found 83km away from the site. Locals of [REDACTED] reported a huge cut-down tree appearing "out of nowhere" in the middle of the city square. The tree had been removed by local authorities and discarded in the nearby forest. The tree does not exhibit any signs of rot, thermites, local fauna interference or other damage, despite being exposed to atmospheric conditions for more than 50 years. The exact moment of the removal of the trunk from SPC-XXXX and the reason for that is, as of yet, unknown.

Foundation researcher Dr. Simone Derma has performed dendrochronological procedures and determined the tree had been at least 800 years old, and of the Quercus robur species, which is widely spread across the whole region. Other than that, the trunk and crown of SCP-XXXX do not seem to be exhibit any anomalous properties, and have been

Addendum #6:
As per incident ST-XX-2-a, all personnel is strictly forbidden from entering a zone of 100m in diameter during a full moon night and disrupting SCP-XXXX-1's rituals in any way. Any attempts at communicating with the instances would interfere with the entities' ritual and lead to a security breach of unknown consequences.

As of Aug 28, 2018 all interactions with instances of SCP-XXXX-1 are forbidden 2 days before, during, or 2 days after periods of full moon. All available measures should be taken to prevent such interactions. An interrupted ring of Juniperus oxycedrus species should be maintained for 50m with SCP-XXXX at the center.


[[footnoteblock]]