*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: arial, helvetica, sans-serif;
	list-style: none;
}

html{
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}

body{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	--color1: #000000;
	--color2: #ffffff;
	--color3: #1014e8;
}

/*HEADER*/

header {
	z-index: 50;
	mix-blend-mode: soft-light;
}

.title-ticker{
	padding-block: 1px;
	border-block: 7px solid;
	color: var(--color2);
	display: flex;
	overflow: hidden;
	user-select: none;
	font-size: 85px;
	font-weight: bold;
	z-index: 50;
	position: fixed;

	--gap: 20px;
	gap: var(--gap);
}

.title-ticker ul{
	list-style: none;
	flex-shrink: 0;
	min-width: 100%;
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
	align-items: center;
	z-index: 50;

	animation: scroll 50s linear infinite;
}

.title-ticker:hover ul {
	animation-play-state: paused;
}

/*KEYFRAMES*/
@keyframes scroll{
	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/*NAVBAR*/

.nav-bar{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	position: fixed;
	top: 125px;
	padding: 50px;
	z-index: 100;
	animation: fade-down 0.5s;
}

.menu {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 27%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    background-color: var(--color3);
    transition: all 0.2s ease-in-out;
}
.menu li {
	padding-left: 30px;
	margin-top: 40px;
}
.menu li a {
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	color: var(--color2);
	text-align: center;
	transition: 0.15s ease-in-out;
	position: relative;
	text-transform: uppercase;
}
.menu li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--color2);
	transition: 0.15s ease-in-out;
}
.menu li a:hover:after {
	width: 100%;
	background-color: var(--color2);
}

.open-menu , .close-menu {
	position: absolute;
	color: var(--color3);
	cursor: pointer;
	font-size: 1.5rem;
	display: block;
	padding: 2px;
}
.open-menu {
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.split-image-container {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto;
}
.quadrant {
  position: absolute;
  width: 50%;
  height: 50%;
  background-image: url("menu.png");
  background-size: 70px 70px;
  transition: transform 0.3s ease;
}
.quadrant-1 {
  top: 0;
  left: 0;
  background-position: top left;
}
.quadrant-2 {
  top: 0;
  right: 0;
  background-position: top right;
}
.quadrant-3 {
  bottom: 0;
  left: 0;
  background-position: bottom left;
}
.quadrant-4 {
  bottom: 0;
  right: 0;
  background-position: bottom right;
}
.split-image-container:hover .quadrant-1 {
  transform: translate(-5px, -5px);
}
.split-image-container:hover .quadrant-2 {
  transform: translate(5px, -5px);
}
.split-image-container:hover .quadrant-3 {
  transform: translate(-5px, 5px);
}
.split-image-container:hover .quadrant-4 {
  transform: translate(5px, 5px);
}

.close-menu {
    top: 15%;
    right: 20px;
}
.close-menu:hover{
	opacity: .75;
}
.highlight{
	color: var(--color3);
}
#check {
	display: none;
}

#check:checked ~ .menu {right: 0;}

/*SLIDES*/

.container{
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: row;
	overflow-x: hidden;
	overflow-y: hidden;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	background-color: transparent;
}

.slides {
	min-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.splash-vid{
	position: fixed;
	height: 100vh;
	width: 100%;
	z-index: -1;
	object-fit: cover;
}
.content{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: justify;
	margin: 70px;
	max-width: 500px;
	padding: 10px;
	opacity: 100%;
	background-blend-mode: screen;
	object-fit: cover;
}
.important{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: justify;
	background-color: var(--color2);
	opacity: 100%;
	mix-blend-mode: lighten;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	padding-top: 20px;
}
h1{
	letter-spacing: 10px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 32px;
}
p{
	font-weight: lighter;
	font-size: 14px;
	color: var(--color1);
	background-color: white;
	background-blend-mode: multiply;
	padding: 20px;
}
a{
	font-size: 14px;
}

/*FOOTER*/

footer {
	display: flex;
	position: fixed;
	bottom: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	color: var(--color2);
	mix-blend-mode: soft-light;
	background-color: transparent;
	margin-top: 0px;
	padding-block: 5px;
	border-block: 7px solid;
	font-size: 16px;
	z-index: 50;
}

h2{
	font-size: 14px;
	font-weight: lighter;
	color: var(--color2);
	mix-blend-mode: normal;
}

/*Responsive Elements*/
@media(max-width: 800px){
}

@media(max-width: 610px){
}