.index-container{
	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	overflow: hidden;
}
@keyframes zoomin {
    0% {
		
		transform: scale(1, 1);
		transform-origin: 50% 70%;
		transition-timing-function: linear;
		opacity: 0;
    }
    5%{
    	transform: scale(1, 1);
		transform-origin: 50% 70%;
		transition-timing-function: linear;
		opacity: 1;
    }
    90% {
		
		transform: scale(1.3, 1.3);
		transform-origin: 50% 70%;
		transition-timing-function: linear;
		opacity: 1;
    }
    95%{
		transform: scale(1.3, 1.3);
		transform-origin: 50% 70%;
		transition-timing-function: linear;
		opacity: 0;
    }
    100%{
    	opacity: 0;
    }
 }
.bg-img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/index-min.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 1;
	animation: zoomin 30s ease 0s infinite;
  -webkit-animation: zoomin 30s ease 0s infinite;
}

.sizing{
	transform: scale(1.3, 1.3);
	transform-origin: bottom;
	transition: 30s;
	transition-timing-function: linear;
}
.logo{
	z-index: 99;
	margin-top: 200px;
}
.topnav-logo{
	display: none;
}
@media(max-width: 500px){
	.logo{
		margin-top: 230px;
	}
}