/* sets up the grid of the page*/
.container{
	width: 100vw;
	height: 100vh;

	display: grid;
	/*width of areas*/
	grid-template-columns:1fr;
	/*height*/
	grid-template-rows: 100px 1fr;
	/* gap between grid*/
	gap: 0px;
	/* supposed to make a space around the edges*/
	padding: 10 px;
	box-sizing: border-box;
}
/*for development
.container > div{
	padding: 10px;
	border: 1px solid black
}*/

.navbar-left{
	grid-row-start: 2;
	grid-row-end: 3;
}

.content{
    margin: 10px;
	grid-row-start: 2;
	grid-row-end: 3;
	grid-column: 1 / 2;
}

.header {
    background: rgb(72, 103, 168);
    grid-row: 1 / 2;
	grid-column-start: 1;
	grid-column-end: 3;
}

body {
	background-color: rgb(220, 220, 256);
	color: white;
	margin: 0px;
	padding: 0px;
}


/* header css*/

.header::after {
    content: '';
    display: table;
    clear: both;
}

.logo {
    float:left;
    width: 50px;
    height: 52.5px;
    border-style: none;
    padding:5px;
    font-size: 30px;
}

.header>nav {
    float: right;
    margin-left: 35px;
    margin-right: 5%;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header li {
    display: inline-block;
    margin-left: 30px;
    padding-top: 25px;
    position: relative;
}

.header ul>li>a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-style: bold italic;
}

.header a:hover {
    color: black;
}

.header a::before {
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    background-color: rgb(75, 75, 150);
    position: absolute;
    top: 0;
    width: 0%;
    transition: all ease-in-out 250ms;
}

.header a:hover::before {
    width: 100%;
}


/* beside */
.navbar-left {
    background-color: rgb(75, 75, 150);
}

.navbar-left ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-left li {
    margin: 10px;
    position: relative;
}

.navbar-left ul>li>a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-style: bold italic;
}

.navbar-left a:hover {
    color: black;
}

.navbar-left a::before {
    
    content: '';
    display: block;
    height: 100%;
    background-color: rgba(75, 75, 150, 0);

    position: absolute;
    width: 0%;
}

.navbar-left a:hover::before {
    width: 100%;
	background-color: rgba(50, 50, 105, .5);
}

/* random css*/

h1 {
	color: rgb(72, 103, 168);
	text-align: center;

}
h2{
	color: rgb(72, 103, 168);
	text-decoration: underline;
}

p {
	font-family: Andale Mono;
	color: rgb(57, 65, 130);
	text-align: left;
	font-size: 20px;
}

img {
	padding: 10px;
}

main {
	color: black;
	font-size: 30px;

}

h3 {
	font-size: 25px;
	background-color: grey;
	text-align: left;
	color: rgb(220, 220, 256);
}
ol {
	list-style: none;
}
ol > li{
	float: left;
	width: 150px;
	height: 150px;
	margin: 20px;
	border-color: black;
}

