*{
	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: 100;
}

.title-ticker{
	padding-block: 1px;
	border-block: 7px solid;
	background-color: var(--color2);
	display: flex;
	overflow: hidden;
	user-select: none;
	font-size: 85px;
	font-weight: 10;
	z-index: 100;

	--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: 100;

	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;
	padding: 50px;
	z-index: 50;
	animation: fade-down 0.5s;
}

.menu {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 27%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 50;
    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(--color3);
}

.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%);
    background-color: var(--color3);
    border-radius: 10px;
}
.open-menu:hover{
	opacity: .75;
}
.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: calc(100vh - 150px);
	display: flex;
	flex-direction: row;
	overflow-x: hidden;
	overflow-y: hidden;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.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: 80px;
	max-width: 500px;
	padding: 20px;
	background-color: var(--color2);
	opacity: 90%;
	border-radius: 10px;
}

h1{
	letter-spacing: 7px;
	font-weight: lighter;
	text-transform: uppercase;
	font-size: 32px;
	color: #292929;
}
p{
	font-weight: lighter;
	font-size: 14px;
	color: #616161;
}
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%;
	background-color: var(--color2);
	margin-top: 0px;
	padding-block: 5px;
	border-block: 7px solid;
	font-size: 16px;
	z-index: 100;
}

h2{
	font-size: 14px;
	font-weight: lighter;
	color: #616161;
}

/*Responsive Elements*/
@media(max-width: 800px){
}

@media(max-width: 610px){
}