@import url("https://fonts.googleapis.com/css?family=Roboto");

body {
    background-color: black;
    font-family: Roboto;
	padding: 0px;
	margin: 0px;
}

a {
    text-decoration: none;
    color: inherit;
}

#bmwLogoDiv {
    height: 90px;
}

#bmwLogo {
    height: 100px;
    display: block;
    margin: 15px auto auto auto;

}

#siteName {
    color: white;
    text-align: center;
    letter-spacing: 3px;
}

.navbar {
    padding-right: 20px;
}

.links {
    color: black;
    background-color: #4287f5;
    margin: 0px;
    padding: 10px;
    width: 100%;
    font-size: 10px;
    border-radius: 10px;
    text-align: center;
    float: left;
}

@keyframes expand {
    from {height: 80px;}
    to {height: 100px;}
}

.links li {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    padding: 0px 10px 0px 10px;
    transition: 0.2s;
    border-radius: 10px;
}

.links li:hover {
    background-color: white;
    cursor: pointer;
}

.container {
    display: flex;
    height: 100%;
    width: 80%;
	margin: 0 auto;
	vertical-align: bottom;
}

.mainText {
    background-color: white;
    height: 100%;
    width: 80%;
    border-radius: 10px;
    padding: 20px;
    margin: 10px 5px 0px 0px;
	transition: 1s;
	word-wrap: break-word;
	display: block;
}

.mainText:hover {
	background-color: #ebebeb;
}

.mainText img {
	width: 50%;
	/*display: block;*/
	float: right;
}

.mainText p {
	display: inline;
	width: 100%;
}

.rightNav {
    background-color: white;
    display: flex;
    height: 100%;
    width: 20%;
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0px 5px 2px;
	transition: 1s;
}

.rightNav:hover {
	background-color: #ebebeb;
}

footer {
    background-color: white;
    display: flex;
    height: 100%;
    border-radius: 10px;
    padding: 20px 8px 8px 20px;
    clear: both;
    text-align: center;
	transition: 1s;
	margin: 57px 0px 5px 0px;
   }

.footer {
	width: 80%;
	margin: 0 auto;
	height: 100%;
}

footer:hover {
	background-color: #ebebeb;
}
   
footer a {

    display: block;
    float: left;
    margin: 6px 7px 6px 7px;
    font-weight: bold;
    font-size: 17px;
}