
@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    width:100vw;
    height: 100%;
    background-color: gainsboro;
    justify-content: center;
    align-items: center;
}

.logos{
		order:0;
		width: 33.33%;
    display: flex;
flex-direction:row; 
    justify-content:space-around; 
	}
.logo{
		max-height: 32px;
		padding-left: 10px;
}


header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:100vw;
    text-align: center;
}
nav
{
    background-color:#585858;
    color:white;
    width:100%;
  
}
nav ul{
    display:flex;
    flex-direction:row;
    width:100%;
    padding: 0;
    

}

nav ul li {
    display:flex;
    flex-grow: 1;
    justify-content:center;

}

nav ul li a{

    color: white;
    display:flex;
    text-decoration:none;
    height:4em;
    align-items: center;
}


header li:hover {
    color:darkgrey;
    background-color:#3399ff;
}

main a:hover{
    color:white;
}

header a{
	text-decoration: none;
	color: black;
}

h1{
    margin-top: 1rem;
    margin-bottom: .3rem;
    color: #585858;
    font-weight: 300;
}

header p{
    margin-bottom: 1rem;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:80vw;
    max-width: 40rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}


.title{
    font-size:1.6rem;
    text-align: center;
    letter-spacing: .1em;
    margin-bottom: .5em;
}



main img{
    display:flex;
    height:95vh;  
    margin: 1em;
    max-width: 400px;
    max-height: 700px;
}



footer { background: #585858;
    color: white;
    padding: 15px; 
    text-align: justify;
    font-size: 12px;
}