body, html {
    margin: 0;
    padding: 0;
    /*height: 200%; */
    overflow-x: hidden;
}

html, body {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.page {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    font-family: Arial, sans-serif;
    transition: transform 0.5s ease-out;
    box-shadow:
        0 0 100px,
        0 0 100px;
}

.pageWrapper {
    all: initial;
}

.page1 {
    background-color: rgb(21, 23, 24);
}

.page1 .data {
    margin: 0 50px;
    font-size: 10rem;
    color: white;
    font-family: Arial, sans-serif;
    transition: font-size 0.2s ease-out, margin 0.2s ease-out; /* Apply transition to font-size and margin */
}

.page1 h1 {
    margin: 0;
}

.projects {
    background-color: rgb(31, 31, 41);
    transform: translateX(100%);
}

.projects .data {
    color: white;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.ponk {
    background-color: rgb(40, 31, 41);
    transform: translateX(100%);
}

.ponk .data {
    color: white;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.media {
    background-color:rgb(17, 20, 20);
    transform: translateX(100%);
}

.media .data {
    color: white;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.page3 {
    background-color: rgb(43, 28, 34);
    transform: translateX(100%);
}

.vertical_line {
    position: fixed;
    top: 0;
    left: 0%;
    width: 20px;
    height: 0;
    background-color: rgb(255, 255, 255);
    /*transition: height 0.3s ease-out;*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.box {
    padding: 2px 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin: 5px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.box.visible {
    opacity: 1;
    transform: translateX(0);
}

.boxWrapper {
    box-sizing: border-box;
    padding-left:20px;
    padding-right:20px;
    height: 70px;
    /*max-width: 70rem;
    width: 100%;*/
    width: 300px;
    display:flex;
    justify-content: space-between;
	align-items: center;
    color: aliceblue;
    font-size: 1.5rem;
}

.boxWrapper a {
    text-decoration: none;
    color: inherit;
}

.boxWrapper img {
    height: 80%;
    width: same-as-height;
}

.ponkVideo{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
}

video::-webkit-media-controls {
    display: none !important;
}
video::-moz-media-controls {
    display: none !important;
}
video::-ms-media-controls {
    display: none !important;
}
video {
    pointer-events: none; /* To prevent interaction */
}

#allowJS {
    position:absolute;
    background-color: aliceblue;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display:block;
    z-index: 9999;
    text-align: center;
}

.js-enabled #allowJS {
    display: none; /* Hide the JavaScript prompt when JavaScript is enabled */
}

/* Media query for smaller screens */
@media only screen and (max-width: 1400px) {
    .page1 .data {
        font-size: 6rem;
        margin: 0 20px;
    }
}

@media only screen and (max-width: 800px) {
    .page1 .data {
        font-size: 4rem;
        margin: 0 20px;
    }
}