@charset "UTF-8";

*{
	margin: 0;
	padding-top: 0;

}

container {
	width: 100vw;
	height: 100vh;
	display: grid;
	grid-template-row: 2% 98%;
	grid-template-areas: 
		"header index-parent"
	
}

.container nav {
	display:inline-block;
    width: 340px;
    height: 30px;
    background-color: #FD2A2D;
}

nav ul li {
	float: left;
	list-style: none;
	position: relative;
}

nav ul li a {
	display: block;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	color: #000000;
	font-size: 9pt;
	padding: 8px 10px;
	text-decoration: none
}
nav ul li a:hover {
	color: #CBC9C9;
}

nav ul li ul {
	display: none;
	position: absolute;
	background-color: #FD2A2D;
	opacity: 90%;
}
nav ul li:hover ul {
    display: block;
    align-content: center;
    z-index: 8;
	padding-right: 30px;
}

nav ul li ul li {
	width: 200px;
}

nav ul li ul li a {
	padding: 6px 0px;
}
nav ul li ul li a:hover {
	text-decoration-color: #CBC9C9;
}



#index-parent {
	min-width: 100vw;
	min-height: 100vh;
	display: grid;
	justify-content: center;

}

#index-main {
	width: 100%;
	height: 100%;
	justify-content: center;
	padding: 0%;
	display: grid;
	grid-auto-flow: column;

}
	

#index-main main .index-image {
	width: clamp(30%, 45%, 800px);
	height: inherit;
	object-fit: cover;
	padding: .2%;
}


@media only screen and (min-width:1800px){

#index-main main .index-image {
	width: 30%;
	}
}


@media only screen and (max-width:850px){
	
#index-main {
    grid-template-columns: 1fr;
	}
#index-main main .index-image {
	width: 90%;
	}
}
