.indexmain{
	position: relative;
	top: 80px;
	height: calc(100vh - 90px);
}

.flex{
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.indexbox{
	width: 100%;
	height: 40vh;
	margin: 10px 5px;
	cursor: pointer;
	text-align: center;
}

.boximage{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.25;
}

.footer{
	min-height: 500px;
}

.boxfail{
	cursor: not-allowed;
}

.maintitle{
	font-size: 40px;
	font-weight: bold;
	animation: 3s maintitle infinite;
}

@keyframes maintitle{
	0%{
		text-shadow: red 2px 2px 2px;
	}
	20%{
		text-shadow: rgb(255, 115, 0) 2px 2px 2px;
	}
	40%{
		text-shadow: rgb(255, 238, 0) 2px 2px 2px;
	}
	60%{
		text-shadow: rgb(0, 255, 64) 2px 2px 2px;
	}
	80%{
		text-shadow: rgb(0, 140, 255) 2px 2px 2px;
	}
	100%{
		text-shadow: rgb(47, 0, 255) 2px 2px 2px;
	}
}

/* ==================================================================================================== */
.loader{
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	width: 0;
	height: 100vh;
	transition: width 0s 1.4s ease;
}

.loader .loadericon{
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.loader .loadericon svg{
	transform-origin: 0 0;
}

.loader .loadertile{
	position: absolute;
	left: 0;
	width: 0;
	height: 20%;
	background-color: rgb(20, 20, 20);
	transition: width 0.7s ease;
}

.loader .loadertile:nth-child(1){
	top: calc(0 * 20%);
	transition-delay: 0.1s;
}

.loader .loadertile:nth-child(2){
	top: calc(1 * 20%);
	transition-delay: 0.2s;
}

.loader .loadertile:nth-child(3){
	top: calc(2 * 20%);
	transition-delay: 0.3s;
}

.loader .loadertile:nth-child(4){
	top: calc(3 * 20%);
	transition-delay: 0.4s;
}

.loader .loadertile:nth-child(5){
	top: calc(4 * 20%);
	transition-delay: 0.5s;
}

.loaderactive{
	width: 100%;
	transition-delay: 0s;
}

.loaderactive .loadericon{
	opacity: 1;
	transition: opacity 0s 0.5s ease;
}

.loaderactive .loadertile{
	width: 100%;
}

.loaderactive .loadertile:nth-child(1){
	transition-delay: 0.1s;
}

.loaderactive .loadertile:nth-child(2){
	transition-delay: 0.2s;
}

.loaderactive .loadertile:nth-child(3){
	transition-delay: 0.3s;
}

.loaderactive .loadertile:nth-child(4){
	transition-delay: 0.4s;
}

.loaderactive .loadertile:nth-child(5){
	transition-delay: 0.5s;
}

.margin-10px_0px{
	margin: 10px 0px;
}

@media screen and (max-width: 800px) {
	.indexbox{
		width: 100%;
	}

	.flex{
		flex-wrap: wrap;
	}
}


/* ======================================================= */
/* 

html{
    background: #e26b09;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #e26b09;
    display: grid;
    cursor: none !important;
}

div{
    cursor: none !important;
}

.ghostdot{
    width: 8px;
    height: 8px;
    position: absolute;
    left: -10px;
    top: -10px;
    background: white;
    border-radius: 50%;
}

.ghost{
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    grid-template-columns: repeat(5, 1fr);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 72px;
}

.body{
    grid-row: 1/5;
    grid-column: 1/6;
    background: white;
    border-radius: 50% 50% 0 0;
}

.eye1{
    grid-row: 2/3;
    grid-column: 2/3;
    background: black;
    border-radius: 50%;
}

.eye2{
    grid-row: 2/3;
    grid-column: 4/5;
    border-radius: 50%;
    background: black;
}

.mouth{
    grid-row: 3/4;
    grid-column: 3/4;
    background: black;
    width: 50%;
    height: 50%;
    justify-self: center;
    align-self: center;
    border-radius: 50%;
}

.foot1{
    grid-row: 5/7;
    grid-column: 1/2;
    width: 80%;
    border-radius: 0 0 5px 5px;
    background: white;
}

.foot2{
    grid-row: 5/6;
    grid-column: 3/4;
    width: 80%;
    border-radius: 0 0 5px 5px;
    background: white;
}

.foot3{
    grid-row: 5/6;
    grid-column: 5/6;
    width: 80%;
    justify-self: end;
    border-radius: 0 0 5px 5px;
    background: white;
}

.navigationbar{
    border: none;
    background: #ff7300;
}

.footer{
    background: #e26b09;
} */