@supports((display: -ms-grid) or (display: grid)) {
@media only screen and (min-width: 769px) {
#side-bar .close-menu {
display: block;
position: fixed;
top: 0.25rem;
left: 0.5rem;
width: 3rem;
opacity: 1;
pointer-events: all;
}
#side-bar .close-menu img {
color: transparent;
}
#side-bar .close-menu::before,
#side-bar .close-menu::after {
content: "";
box-sizing: border-box;
position: fixed;
display: block;
top: 0.25rem;
left: 0.5rem;
width: 3rem;
height: 3rem;
padding: 0;
margin: 0;
text-align: center;
pointer-events: all;
cursor: pointer;
-webkit-transition:
opacity var(--sidebar-transition-timing);
-o-transition:
opacity var(--sidebar-transition-timing);
-moz-transition:
opacity var(--sidebar-transition-timing);
transition:
opacity var(--sidebar-transition-timing);
}
#side-bar .close-menu::before {
--mask: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg height='32px' id='Layer_1' style='enable-background:new 0 0 32 32;' version='1.1' viewBox='0 0 32 32' width='32px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2 s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2 S29.104,22,28,22z'/%3E%3C/svg%3E");
z-index: -1;
background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important;
-webkit-mask: var(--mask);
mask: var(--mask);
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-position: 50% 50%;
mask-position: 50% 50%;
-webkit-mask-size: 60%;
mask-size: 60%;
}
#side-bar .close-menu::after {
z-index: -2;
background-color: var(--toggle-button-bg, rgb(var(--swatch-menubg-color))) !important;
-webkit-border-radius: var(--toggle-roundness, 50%);
-moz-border-radius: var(--toggle-roundness, 50%);
border-radius: var(--toggle-roundness, 50%);
border: var(--toggle-border-color, rgb(var(--swatch-border-color))) var(--toggle-border-width, 0.25rem) solid;
}
#side-bar:focus-within .close-menu::before,
#side-bar:focus-within .close-menu::after {
opacity: 0;
}
#side-bar {
display: block;
position: fixed;
top: 0;
left: -webkit-calc(var(--sidebar-width-on-desktop)*-1);
left: -moz-calc(var(--sidebar-width-on-desktop)*-1);
left: calc(var(--sidebar-width-on-desktop)*-1);
z-index: 10;
-webkit-transition:
left var(--sidebar-transition-timing);
-o-transition:
left var(--sidebar-transition-timing);
-moz-transition:
left var(--sidebar-transition-timing);
transition:
left var(--sidebar-transition-timing);
height: 100%;
overflow-y: auto;
overflow-x: hidden;
margin-top: 0;
}
#side-bar:focus-within {
left: 0;
}
#side-bar .side-block {
margin-top: 1rem;
background-color: rgb(0, 0, 0, 0);
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border-left-width: 0px;
border-right-width: 0px;
}
#main-content::before {
content: "";
display: block;
position: fixed;
top: 0;
right: 0;
z-index: -1;
opacity: 0;
-webkit-transition:
opacity var(--sidebar-transition-timing),
width var(--sidebar-transition-timing);
-o-transition:
opacity var(--sidebar-transition-timing),
width var(--sidebar-transition-timing);
-moz-transition:
opacity var(--sidebar-transition-timing),
width var(--sidebar-transition-timing);
transition:
opacity var(--sidebar-transition-timing),
width var(--sidebar-transition-timing);
margin-left: var(--sidebar-width-on-desktop);
background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat;
padding-right: 0;
width: 100%;
height: 100vh;
pointer-events: none;
z-index: 99;
}
#side-bar:focus-within~#main-content::before {
width: -webkit-calc(100% - var(--sidebar-width-on-desktop));
width: -moz-calc(100% - var(--sidebar-width-on-desktop));
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
#content-wrap {
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
-moz-box-orient: horizontal;
-moz-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
width: -webkit-calc(100vw - (100vw - 100%));
width: -moz-calc(100vw - (100vw - 100%));
width: calc(100vw - (100vw - 100%));
min-height: -webkit-calc(100vh - -webkit-calc(var(--final-header-height-on-desktop, 10.125rem)));
min-height: -moz-calc(100vh - -moz-calc(var(--final-header-height-on-desktop, 10.125rem)));
min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem)));
-webkit-box-flex: 2;
-webkit-flex-grow: 2;
-moz-box-flex: 2;
-ms-flex-positive: 2;
flex-grow: 2;
height: auto;
position: relative;
margin: 0 auto;
max-width: inherit;
}
#main-content {
width: 100%;
position: initial;
max-height: 100%;
padding: 2rem 1rem;
width: 45.8rem;
max-width: 45.8rem;
margin: 0 auto;
}
@media not all and (min-resolution:.001dpcm) {
@supports (-webkit-appearance:none) {
#side-bar {
-webkit-transition:
left var(--sidebar-transition-timing),
padding-right var(--sidebar-transition-timing),
background-color var(--sidebar-transition-timing);
-o-transition:
left var(--sidebar-transition-timing),
padding-right var(--sidebar-transition-timing),
background-color var(--sidebar-transition-timing);
-moz-transition:
left var(--sidebar-transition-timing),
padding-right var(--sidebar-transition-timing),
background-color var(--sidebar-transition-timing);
transition:
left var(--sidebar-transition-timing),
padding-right var(--sidebar-transition-timing),
background-color var(--sidebar-transition-timing);
padding-right: 0;
background-color: rgb(0, 0, 0, 0);
pointer-events: all;
overflow-x: visible;
overflow-y: visible;
z-index: 999;
}
#side-bar::-webkit-scrollbar {
opacity: 0;
-webkit-transition: opacity var(--sidebar-transition-timing);
transition: opacity var(--sidebar-transition-timing);
}
#side-bar .close-menu::before {
z-index: 999;
}
#side-bar .close-menu::after {
z-index: 998;
}
#side-bar:hover .close-menu::before {
opacity: 0;
}
#side-bar:hover {
left: 0;
background-color: rgba(var(--swatch-menubg-color), 1);
padding-right: 0;
}
#side-bar:hover::-webkit-scrollbar {
opacity: 1;
}
#side-bar:hover~#main-content::before {
width: -webkit-calc(100% - var(--sidebar-width-on-desktop));
width: -moz-calc(100% - var(--sidebar-width-on-desktop));
width: calc(100% - var(--sidebar-width-on-desktop));
opacity: 1;
pointer-events: all;
}
}
}
}
}
@supports((display: -ms-grid) or (display: grid)) {
:root {
/* header measurements */
--header-height-on-desktop: 10rem;
--header-height-on-mobile: 10rem;
--header-h1-font-size: -webkit-calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750)));
--header-h1-font-size: -moz-calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750)));
--header-h1-font-size: calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750)));
}
#header {
background: none;
}
#header::before {
content: " ";
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0.75rem;
background-image: var(--logo-image);
background-repeat: no-repeat;
background-position: center -3.5rem;
-webkit-background-size: auto 8rem;
-moz-background-size: auto 8rem;
-o-background-size: auto 8rem;
background-size: auto 8rem;
background-position: center top;
opacity: 0.45;
pointer-events: none;
}
#header h1,
#header h1 a,
#header h1 a::before {
position: absolute;
top: 0;
left: 0;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-moz-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
max-height: inherit;
z-index: 0;
}
#header>h1>a>span {
width: 100%;
height: 100%;
top: 0;
left: 0;
max-width: inherit;
}
#header h1 {
height: -webkit-calc(100% - 2.25rem);
height: -moz-calc(100% - 2.25rem);
height: calc(100% - 2.25rem);
}
#header h1 a::before,
#header h1 a {
text-align: center;
line-height: 0.8;
}
#header h2,
#header h2 span,
#header h2 span::before {
position: absolute;
left: 0;
top: 0.15em;
margin-left: 0;
padding: 0;
width: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -moz-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: end;
-webkit-align-items: flex-end;
-moz-box-align: end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-box-pack: center;
-webkit-justify-content: center;
-moz-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
max-height: inherit;
z-index: 0;
text-transform: uppercase;
pointer-events: none;
}
#login-status {
min-height: -webkit-calc(var(--base-font-size) * 1.5);
min-height: -moz-calc(var(--base-font-size) * 1.5);
min-height: calc(var(--base-font-size) * 1.5);
-webkit-border-radius: .0625rem;
-moz-border-radius: .0625rem;
border-radius: .0625rem;
-webkit-border-radius: var(--border-radius-width);
-moz-border-radius: var(--border-radius-width);
border-radius: var(--border-radius-width);
color: rgb(var(--pale-gray-monochrome));
background-color: rgba(0, 0, 0, 0);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-moz-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
left: 3%;
right: initial;
}
#login-status .printuser {
--wght: 900;
position: relative;
top: 0;
left: 0;
color: rgb(var(--swatch-menutxt-light-color));
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
padding: 0.25rem;
margin: 0;
font-weight: 900;
}
#login-status #my-account {
--wght: 300;
color: rgb(var(--pale-gray-monochrome));
font-weight: 300;
}
#login-status #account-topbutton {
border: initial;
padding: 0.5em 0.5em 0.5em 0.25em;
position: relative;
height: 100%;
top: 0;
left: 0;
margin: 0;
font-size: 1em;
}
#account-options {
width: auto;
padding: 0.5em;
border-color: rgba(var(--bright-accent));
background: var(--gradient-header);
color: rgb(var(--swatch-text-light));
}
#account-options ul li a {
color: rgb(var(--swatch-text-light));
}
#account-options li a:hover {
color: rgb(var(--swatch-text-light));
text-decoration: underline;
}
@media only screen and (min-width: 769px) {
#search-top-box {
right: 3%;
top: 0.5rem;
}
#search-top-box-form>input,
#search-top-box-form>input:hover,
#search-top-box-form>input:focus {
background: rgb(var(--black-monochrome));
}
#search-top-box-form>input {
-webkit-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color));
-moz-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color));
box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color));
}
#search-top-box-form>input:hover,
#search-top-box-form>input:focus {
-webkit-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color));
-moz-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color));
box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color));
}
#search-top-box-form input[type="submit"],
#search-top-box-form input[type="submit"]:focus,
#search-top-box-form input[type="submit"]:hover {
border: none;
border-left: 0.0625rem solid rgb(var(--swatch-primary-darkest));
-webkit-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color));
-moz-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color));
box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color));
}
#search-top-box-form input[type="submit"] {
background: rgb(var(--swatch-primary-darkest));
color: rgb(var(--swatch-menutxt-light-color));
}
#search-top-box-form input[type="submit"]:focus,
#search-top-box-form input[type="submit"]:hover {
background: rgb(var(--swatch-primary));
-webkit-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color));
-moz-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color));
box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color));
}
}
#page-title {
text-align: center;
}
@media only screen and (max-width:768px) {
:root {
--header-h1-font-size: -webkit-calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750)));
--header-h1-font-size: -moz-calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750)));
--header-h1-font-size: calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750)));
}
#header h1,
#header h1 a,
#header h1 a::before {
top: 0.25rem;
}
#header h2,
#header h2 a,
#header h2 a::before {
top: 0;
}
#header h2 span {
margin-top: -webkit-calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 + .25rem);
margin-top: -moz-calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 + .25rem);
margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - .25rem);
}
}
Secondary Class:
{$secondary-class}
Site Director
Dr. To██ ███
Research Head
Dr. Marriot
Assigned MTF
Theta-7 "Weed Whackers"
Photo taken upon discovery of SCP-XXXX: 6/2/20██
Special Containment Procedures: SCP-XXXX is contained within a large containment warehouse within Site-25. A research station has been set up to monitor the anomaly. A ceiling tall glass containment window is in place all the way around SCP-XXXX to isolate it from personnel. The entrance to SCP-XXXX is restricted entry to any personnel with below level XXXX/4 clearance.
SCP-XXXX's containment area has a security system in place to track the movement of SCP-XXXX and possibly other entities within the anomaly. Expeditions into SCP-XXXX are only to be conducted with permission from site head, Dr. To██ ███.
Description: SCP-XXXX has the look of a late 20th-century house in slight disrepair. The building is made of wooden planks coated in peeling white paint, with the roof being made of cracked green plating with thin wooden pillars holding up the house's veranda. The veranda above the entrance into the house is in the process of falling apart, with the wood rotting away and tiles missing. SCP-XXXX was not connected to any sewage or water system and had no roads leading to the property, this was due to the fact that SCP-XXXX has a form of navigation, the full extent of this movement is yet to be determined.
The number of rooms seen inside SCP-XXXX shows a far greater size and scale than the outside building has the capability of housing, so it is believed that a pocket dimension, referred to as SCP-XXXX-A is being kept inside the building, and has the ability to relocate SCP-XXXX by unknown means. The walls of SCP-XXXX-A are made of an unrecognizable wooden substance, not matching any known earth-based material, this is in direct contrast to the outside house, which is made of simple hardwood oat.
When a person enters SCP-XXXX the dimensions of the inside structure begin to change drastically, with the rooms even changing in elevation and rotation while still having consistent gravity. The anomaly has similar properties to the art piece "Relativity" (M. C. Escher). there is no possible way to come across a room more than once after leaving the confines of the entity, as hallways will turn into different rooms, and vise versa. The only consistency in the layout of SCP-XXXX-A is when you turn to retrace your steps, a single turn of a corner will bring you straight back to SCP-XXXX's entrance, no matter how far you travel inside.
The rooms and hallways found inside of SCP-XXXX-A are cluttered with random objects, balls, toys, things that would typically be found lost in a public park, It is unknown whether these items are here from people wandering into SCP-XXXX or if they were recovered by unknown means. No inhabitants have been found inside the anomaly human or otherwise. Personnel does report occasionally hearing closing of doors or running water from inside SCP-XXXX.
Over the ██ years SCP-XXXX has been in foundation containment, the entity has been shown to have the ability to move the entire house slightly, no first-hand eyewitnesses have reported the movement directly, but measurements taken have concluded it changes position every so often. The outside of SCP-XXXX has also slowly decayed even more after being first discovered, with SCP-XXXX-A still being in the same condition as previous.
Additional discoveries have been made within SCP-XXXX, this has not been included, as no visual evidence was given.
Additional Notes: SCP-XXXX was first discovered by the foundation on 6/2/20██ when local police reports near the small town ██████, in the middle west of the United States were stating a house had been spotted appearing on random peoples properties, with the house always disappearing before law enforcement could arrive, and people who reported being near the house as it disappeared, reported never seeing the house move at all until it was already gone, all attempts to get inside the house were met by a locked front door. These reports were intercepted by the foundation who was able to locate SCP-XXXX and set up a temporary holding site before getting the go-ahead by local Site Director Dr. To██ ███ to move the anomaly to Provisional Containment Site-25.
Addendum-1 SCP-XXXX Expeditions:
All proceeding expeditions into SCP-XXXX and SCP-XXXX-A were approved by site director Dr. To██ ███.
Expedition reason, research purposes, item recovery, and attempted mapping interior of SCP-XXXX-A.
Expedition Video Log Transcript
Subject: Exploration of SCP-XXXX
Expedition Team: D-96845(Female, 32yrs)
Issued Equipment: Long-range Headset with connection to control, a live video feed mounted to the side of the headset, a standard-issue handheld torch.
The subject is instructed to enter SCP-XXXX, with the door to the containment area being left open. Control then orders the subject to move through the main hallway, the camera activates and shows a consistently lit hallway, with piles of clutter taking up most of the floor space.
The subject then turns a corner as instructed, showing an even longer hallway, the roof of this hallway shows a similar pattern to the floor with more clutter in the corners, but somehow defying gravity, this upside-down hallway leads into a similarly elevated doorway. The subject is slightly taken aback by this but is told to proceed, they mark their place in the anomaly by scratching an X into one of the walls to the dismay of control. As the subject moves deeper inside the entity all scans lose contact, and any indication of their existence besides the camera and audio feeds had been lost. control orders them to proceed.
The subject continues down the hallway until she comes across and sharp incline in the path, control orders them to proceed and to report any new findings. The subject then continues up the steep ramp and comments on the reason for it, the ramp then rounds out into flat ground once again. The subject finds a doorway at the end of the hallway, they are ordered to proceed through into the next hallway, subject comments on this hallway also having the upside-down one above it. The camera then vaguely picks up a carved X in the wall of the hallway above them, the same X D-96845 carved, the subject then questions how any of this is actually possible, control just orders them to retrace their steps and to go into one of the previously seen rooms.
The subject then begins making their way back to the doorway which has a strange light now emanating out of it, subject asks control what to do, where they respond to investigate. as the subject goes through the doorway the strange light then appears to be the containment area, along with scans of the existence of the subject coming back online. D-96845 is then removed from the anomaly for debriefing.
Post Expedition Report: The discovery of inconsistent gravity within SCP-XXXX-A will help to understand the properties of this anomaly better than before, we can also deduce that the entrance to SCP-XXXX is also susceptible to change too, but surprisingly in a way that aids any personnel within the entity, showing up almost right behind them or around a single corner behind them. Further research is required to determine the consistency of this effect.
Signed: Dr. Marriot
Expedition Video Log Transcript
Subject: Exploration of SCP-XXXX
Expedition Team: D-24576-A(Male, 36yrs) D-8697-B(Male, 24yrs)
Issued Equipment: Two Long-range Headsets with connection to control, two live video feeds mounted to the side of the headset, two standard-issue handheld torch, and a two-liter bottle of water.
Both subjects are instructed to enter SCP-XXXX, with the door to the containment area being left open. The two are then instructed to take the same route as the previous expedition, the two continue down the hallway but end up coming to a door instead of another hallway, control orders them to proceed, the two enter a room with a flickering light inside and the camera picks up a three-way crossroad, with the door on the left going down, the door in the middle going up, and the door on the right flat with it turning sharply to the left.
Control instructs the two to stay left, they then proceed down into the brightly lit descending hallway. the two walk for two minutes before the hallway becomes flat and opens out into a large hallway with multiple open doors running all the way down. control orders the two to enter the first door on the left, the subjects enter the room and see two thin hallways with a height of about five meters, with them both becoming a staircase with a consistent height. the light in these two staircases is much dimmer than the rest of the anomaly, and no more than 3 meters are able to be seen with no extra light. Control then instructs them to take a hallway each.
Subject-A then proceeds to take the left hallway, while Subject-B takes the right, they both comment on the roof of the staircase having a step-like design too, but they proceed up for about 2 minutes before they both stop almost instantly. Control questions their sudden stop and orders them to proceed, both subjects refuse, and report seeing a humanoid entity a good few meters away, but standing on the steps on the ceiling, control instructs the two to investigate the entity but to be on guard. As the subjects get closer to the being the cameras begin to view an orange-y colour coming from the entity, until it shows that the two D-Class have somehow run into each other while being on different levels with completely different gravity, the two talk about the situation before being instructed to continue on their path.
Subject-A makes their way to the top of the staircase where a wide, tall room is viewed, the height of this room is undetermined, as the lighting cuts off about 20 meters up the walls, the room appears completely clean and empty, with only a single ladder in the center of the room, control orders Subject-A to climb it. Subject-B finally makes their way to the top of the stairs, where the entrance to the containment area is picked up by the camera, Subject-B is instructed to leave SCP-XXXX they comply and containment security then take D-8697-B for debriefing.
Subject-A continues to climb the ladder for more than 3 minutes, they suddenly slow down slightly, control questions their decrease in speed, subject-A then reports they can hear a slight thumping sound, a sound that has a continuous two thumps every 10 seconds. The noise grows louder and more common the higher Subject-A climbs, they show more signs of unease every few seconds, control questions if they would like to take a minute or two to regain their composure, Subject-A refuses and carries on with greater speed.
Subject-A finds their way to the top of the ladder which leads into a cramped brightly almost blindingly lit room with a single door at the end, Subject-A comments on the door, and the camera shows it to be shut, control orders them to proceed and open the door. Subject-A attempts to turn the handle and open it, but it doesn't open as it's seemingly locked, control instructs them to try to force it open, to no avail.
Subject-A then turns around, to show a now darkly lit hallway with a bright white light about ten meters away, subject-A moves down the hallway with control now being able to track their heat signature once again, they return to the containment area and are removed for debriefing.
Post Expedition Report: With subject D-24576-A discovering the faint thumping sound and the locked door, further expeditions are to go ahead. It is unknown whether we have properly bare witnessed the full potential of SCP-XXXX-A's reality-bending anomalous properties but what was viewed has been great for research, showing that personnel is sometimes involuntarily teleported to different sections of the anomaly, purpose as of yet unknown.
Signed: Dr. Marriot
Expedition Video Log Transcript
Subject: Exploration of SCP-XXXX
Expedition Team: D-37564-A(male, 41yrs) D-72413-B(female, 27yrs)
Issued Equipment: Long-range Headset with connection to control, two live video feeds mounted to the side of the headset, a standard-issue handheld torch, a two-liter bottle of water, and a multi-purpose crowbar.
Both subjects are instructed to enter SCP-XXXX, with the door to the containment area being left open. the two are instructed to stay right while traveling through the rooms and hallways of the anomaly, the two turn a corner to show what appears to be a spiral staircase, but bending over going into one of the walls, control orders the pair to proceed.
The two D-Class make their way up the staircase with no issue, with the gravity seemingly changing as they walk up. They make their way to the top of it now showing a room with a large sunroof showing the night sky taking up most of the ceiling above them, this is in contrast to the outside world, which is midday at most. The cameras also pick up five thin hallways all parallel to each other at the end of the room, control instructs the two to enter the same hallway the one furthest right, the two D-Class then make their way through the thin hallway, which now shows another brightly lit room at the end, the two enter the room which appears to be the same one with the sunroof in it, but now appearing to be the floor.
Control instructs the two to try to make their way through the glass into what appears to be the outside. Subject-A then attempts to use the issued crowbar to try to break through the glass, the glass window then shatters sending all the glass shards upwards falling to the ceiling, control then orders the two to go inside.
Both subjects fall into the now wall of the other room which appears to be the same large room discovered by D-24576-A in the previous expedition, with two ladders now present instead of one, control instructs the two to only take one of the ladders in front of the pair as to be precise as possible, they make their way to the ladders where Subject-B reports hearing a very faint thumping sound, which Subject-A begins hearing the closer they get to the ladders.
Once both subjects begin climbing the single ladder they report the thumping sound is so loud its hard to climb without covering their ears, with the sound being almost sixty to one hundred beats per minute, the two are only climbing for one minute before reaching the top now revealing an extremely long hallway, with the same brightly almost blindingly bright light, and with the same locked closed door. Control instructs the subjects to make their way to the door.
The pair proceed to the door and begin to pry it open with the crowbar, only stopping to cover their ears or drink the provided water. After finally breaking the hinges and getting the door open, the camera picks up another hallway but with a more rounded shape with a blue light illuminating everything. The entire hallway is viewed to be twisting and bending upside down and sideways constantly, control orders the two to proceed. The previously deafening thumping sound has quietened down to a more bearable volume with it now physically vibrating the hallway around the two subjects, the blue light around them in the walls also seems to pulsate as the subjects make their way deeper into the hallway.
As the two subjects continue further, control scans begin picking up readings of the pair once again, with their heat signatures also pulsating with them visibly popping in and out every sixty to one hundred times per minute. The camera feeds of both Subject-A and Subject-B then begins cutting out, in the same pulsating way, with is soon cutting out fully. The two subjects then go on to say they have reached the end of the hallway and see a rounded room with three more of the same tunnels they arrived from, the two also comment on the entire room pulsating in and out, with the thumping sound seemingly coming from all around them, control orders them to investigate the room.
Subject-A comments that the entire room has the same pulsating blue light but glowing brighter than duller every time the thumping is heard. The two subjects then both mentions viewing what they determine to be a humanoid-like lump in part of the room, control orders the two to investigate the find with them both complying.
The two subjects then report the humanoid is definitely a different entity to the rest of the room, with it being sunk into the floor, the face of the being is completely covered by the pulsating blue vein-like lights along with the rest of the body, the two then add that the lights seem to all converge into a single hole in the chest of the new anomaly, along with all the blue lights in the room. Control then orders Subject-A to reach into the hole and attempt to collect a sample of whatever is in there, Subject-A agrees and is heard whispering to himself before both subjects audio feeds completely shut off and die, along with their heat signatures completely disappearing, and the front door to SCP-XXXX shutting and audibly locking.
Control attempts to regain contact with D-37564-A and D-72413-B and to try to open the front door of the anomaly, to no result.
Post Expedition Report: With the supposed termination of D-37564 and D-72413 the next logical step was to send in an on-site MTF team but attempts to get the door of SCP-XXXX to open again are preventing any further expeditions. however the discovery of the interior of the locked door inside the anomaly was of great interest, the discovery of the pulsating lights, and room along with the supposed humanoid being is a great find, unfortunately without correct visual evidence, approving an update to the description of SCP-XXXX-A will be- messy, but once we can determine another expedition into the anomaly is possible it won’t be a problem.
Signed: Dr. Marriot
Seeking Greenlights: Yes
Page Type: SCP Article
Genre (Optional): Horror, Mystery
Elevator Pitch: A strange house with the ability to somehow move and navigate the world around it, but once contained shows an almost labyrinth of a pocket dimension within the house that doesn't abide by the laws of physics outside the anomaly. You will find answers for many things about this strange residence, but not everything will be revealed, finding your way through this house may leave you wanting out.
Central Narrative: The foundation picked up local reports of a house showing up on people's properties with it almost disappearing in a way once law enforcement or any kind of large gatherings showed up. Hearing of this, the Foundation were able to contain and transport the structure without much resistance, after discovering more of the house's anomalous properties expeditions into this anomaly were conducted because of the interior being far larger than the outside would realistically be able to fit. The inside of the house being dubbed its own pocket dimension has a layout as consistently inconsistent as the art piece "Relativity" by M. C. Escher.
but once the personnel on these expeditions begin traveling deeper into the anomaly, the more alive it begins to feel.
Hook/Attention-Grabber: what exactly is the pocket dimension, is it it's own being entirely? is it like a vehicle, is it being controlled? why was it found inside a simple house, does it use it almost in the same way a hermit crab would use a shell, or is that where it originated from?
Additional Notes: I recently rewrote this draft because I wasn't happy with the original idea, I didn't seek a greenlight for the previous one, but I can provide ideas from the original if it relates to any critiques I get on my draft.
I also have a complete sandbox draft that I can provide if requested.