@charset "UTF-8";
/* CSS Document */

header {
width: 100%;
height: 150px;
float: left;
background-color: red;
}

.photo {
float: right;
background-image: url("../images/home-page-header.jpg");
background-size: contain;
background-repeat: no-repeat;
border-radius: 30%;
width: 300px;
height: 50px;
}

.left {
background-color: green;
width: 26%;
float: left;
height: 130px;
margin-right: 2%;
padding-left: 2%;
margin-top: 10px;
border-radius: 8px 30px 10px 0px;
}

.right {
background-color: green;
width:68%;
float: left;
height: 130px;
padding-left: 2%;
margin-top: 10px;
}

.logo {
background-color: blue;
width: 55px;
height: 55px;
position: fixed;
top: 60px;
left: 30px;
}

.logo h2 {
color: white;
font-weight: 800;
font-size: 0.9em;
text-align: center;
padding-top: 7px;
}



main {
margin-left: auto;
margin-right: auto;
height: 1000px;
background-color: blue;
width: 90%;
max-width: 1000px;
}



footer {
width: 100%;
height: 50px;
background-color: red;
position: fixed;
bottom: 0px;
left: 0px;
z-index: 10;
}