body {
	margin: 0px;
	padding: 0px;
	cursor: none;
	align-content: center;
	width: 100vw;
    height: 100vh;
    position: relative;
	overflow-y: scroll;
    overflow-x: hidden;
    font-size: 16px;
}

#backdrop {
	position: absolute;
    z-index: 1;
    background-color: white;
	top: 0px;
	left: 0px;
    width: 100%;
    height: 100%;
}

#switchlayer {
    position: absolute;
    z-index: 3;
	top: 0px;
	left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: transparent;
}

#descriptions {
    position: absolute;
    z-index: 2;
	top: 0px;
	left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: transparent;
    overflow: hidden;
}

#backframe
#switchframe {
    width: 100%;
    height: 100%;
    position: relative;
    pointer-events: inherit;
}

.title-img {
    /*background-image: url('./warp_g/tunnel.jpeg');
    background-size: cover;*/
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px 20px black inset;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }

#svg {
	position: absolute;
    z-index: 2;
	top: 0px;
	left: 0px;
    /*display: none;*/
}

h1 {
    font: Louis;
    font-size: larger;
    color: white;
}

.proj-img {
    margin: 0;
    position: absolute;
    background-size: cover;
    background-position: center; 
    width: 290px;
    height: 290px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px 10px black inset;
}

.white-fade-1 {
    box-shadow: 0 0 10px 10px white inset !important;
}

.white-fade-2 {
    box-shadow: 0 0 20px 20px white inset !important;
}

.proj-switch {
    margin: 0;
    position: absolute;
    cursor: none;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: all;
}

.proj-switch a {
    display: block; /* Makes the link behave like a block element */
    width: 100%;    /* Ensures it fills the button's width */
    height: 100%;   /* Ensures it fills the button's height */
    color: inherit; /* Inherits the button text color */
    cursor: none;
}

.cursor-text {
    position: absolute;
    z-index: 3;
    pointer-events: none; /* Prevent the div from interfering with clicks */
    color: red;
    width: 300px;
    font-family: 'FUTURE';
    font-size: .8rem;
    transform: translate(40px, -155px); /* Center the div relative to the cursor */
    transition: transform 0.1s ease;
    display: flex; /* Use Flexbox for alignment */
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-end; /* Align items to the bottom */
    align-items: flex-start; /* Optional: Align text and div to the left */
}

.underline-container {
    width: 100%;
    padding-top: 6px;
    position: relative;
    display: flex;
}

.diag-container {
    width: 14px;
    height: 14px;
    position: relative;
    overflow: hidden;
}

.diag {
    position: absolute;
    border-bottom: solid 1px red;
    width: 20px;
    height: 20px;
    left: 1px;
    bottom: 0;
    transform: rotate(-45deg);
    transform-origin: bottom left;
}

.underline {
    border-top: solid 1px red;
    position: relative;
    width: 7rem;
    height: 14px;
}

#description {
    padding-left: 14px;
}

#console {
	font-size: 1em;
	color: yellow;
	position: absolute;
	right: 100px;
	bottom: -20px;
}