/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

p {
  font-family: "Rubik", serif;
  font-weight: 300;
  font-style: normal;
  color: white;
  font-size: 1.8rem;
  line-height: 1.4;
}

h2 {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 2.5rem;
}

a {
  color: white;	
}

.landing {
	min-height: 100vh;
	margin: 0 auto;
	background:  black;
	padding:  20px;
}

.landing h1 {
	font-family: "Rubik", serif;
 	font-weight: 400;
  	font-style: normal;
  	color: white;
  	font-size: 4.5rem;
  	width: 80%;
  	max-width: 1000px;
}

.landing h3 {
	font-family: "Rubik", serif;
 	font-weight: 400;
  	font-style: normal;
  	color: white;
  	font-size: 2.5rem;
  	line-height: 1.2;
  	width: 80%;
  	max-width: 1000px;
}

.landing p {
	font-family: "Rubik", serif;
 	font-weight: 400;
  	font-style: normal;
  	color: white;
  	font-size: 1.5rem;
  	line-height: 1.4;
  	width: 80%;
  	max-width: 1000px;
}

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

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out; /* Fade transition */
}

.content {
    position: relative;
    z-index: 1;
    padding: 0px;
    background: rgba(0,0,0,0.5);
}

section {
    min-height: 100vh; /* Minimum height of full viewport */
    box-sizing: border-box;
    overflow: hidden; /* Prevent overflow */
    max-width: 1000px;
	width:  80%;
    margin: 0 auto;
}

