:root {
    --color-bg: hsla(0, 100%, 5%, 0.74)
    --color-text:white;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
width: 100%;
height: 100%;
background: var(--color-bg);
font-family: "Tiny5", sans-serif;
}


.header{
    width: 100%;
    height: 300px;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--color-text);
}

p{
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container{
    width: 100%;
    height: 100%;
}
.row{
    width:100%;
    display: flex;
}
.col{
    height: 100%;
}

.img-container{
    width: fit-content;
    height: 100%;
}

.img-container.left{
    text-align:right;
}

.img-container p {
    position:relative;
    padding: 5px 0;
    color: var(--color-text);
    opacity: 1;
    transition: opacity 0.3s,transform 0.3s;
}

#row-1{
    height: 200px;
}
#row-2{
    height: 500px;
}
#row-3{
    height: 150px;
}
#row-4{
    height: 400px;
}
#row-5{
    height: 700px;
}
#row-6{
    height: 300px;
}
#row-7{
    height: 200px;
}
#row-8{
    height: 600px;
}
#row-9{
    height: 300px;
}
#row-10{
    height: 500px;
}

.col:nth-child(1){
    flex: 3;
    display: flex;
    justify-content: flex-end;
}


.col:nth-child(2){
    flex: 5;
}

.img-containe.right img{
    clip-path: polygon(100% 0,100% 0,100% 0,100% 0);
}

.img-container.left img{
    clip-path: polygon(0 0,0 0,0 0,0 0);
}
.whitespace{
    width: 100%;
    height: 300px;
}

















 html, 
 body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Optional: semi-transparent background for better readability */
    overflow: auto;
}
body, html {
    margin: 0;
    padding: bottom;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

