html, body {
    margin: 0px;
    padding: 0px;
    border: 0px;
    width: 100%;
    overflow-x: hidden;
    font-family:Arial, Helvetica, sans-serif;
    
}

p {
    font-family: Helvetica, Arial, sans-serif;
	word-spacing: 1px;
	font-size: 125%;
	line-height: 28px;
    
}

h1 {
    text-align: center;
}

.headercontainer {
    width: 100%;
    height: 80px;
    position: fixed;
    background-image:url('../images/ottieotter-header-background.png');
	background-repeat:no-repeat;
    background-size: 100% 60px;
}

.logo {
    text-align: left;
    font-size: 40px;
    font-weight: 900;
    width: 100%;
    height: 50px;
    padding: 5px;
}

.pinterestlink {
	float: right;
	margin-right: 20px;
	margin-top: 10px;
	width: 35px;
}

.menucontainer {
    width: 100%;
    
}

.menu {
    height: 30px;
    margin: 0px;
    overflow-y: hidden;
    background-color: rgb(58, 55, 53);
}

.menu ul {
    list-style: none;
    
}

.menuitems {
    max-width: 1000px;
    padding: 6px;
    height: 30px;
    color:rgb(112, 117, 102);
    font-weight: bold;
    display: inline-block;
}

.menuitems a {
    color:rgb(112, 117, 102);
    text-decoration: none;
}

.menuitems:hover {
    background-color:rgb(112, 117, 102);
    color: rgb(58, 55, 53);
}

.menuitems:hover a {
    background-color:rgb(112, 117, 102);
    color: rgb(58, 55, 53);
}

.heading {
    color: darkblue;
    font-size: 30px;
    transition: all 0.5s;
}

.heading:hover {
    color: aquamarine;
    font-size: 30px;
}

.content {
    width: 100%;
    max-width: 1300px;
    min-height: 400px;
    margin: auto;
    padding-top: 80px;
    
}

.content-left {
    width: 75%;
    max-width: 980px;
    /*display: block;*/
    float: left;
    margin: 8px 8px;
    
}

.content-right {
    width: 20%;
    max-width: 320px;
    float: right;
    min-height: 500px;
    display: flexbox;
    padding-top: 15px;
    
}

.article {
    width: 100%;
    margin: auto;
    padding: 5px;
}

.footer {
    width: 100%;
    min-height: 100px;
    font-weight:normal;
    background-color:rgb(44, 42, 42);
    color: gray;
    padding: 20px;
    overflow-y: hidden;
}

.footer a {
    color: gray;
    text-decoration: none;   
}

.footercolumns {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footercolumn {
    float: left;
    width: 300px;
    min-height: 120px;
}

.subfooter {
    width: 100%;
    min-height: 100px;
    background-color:rgb(44, 42, 42);
    color: gray;
    padding: 10px;
}

.iframe-container{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (min-width: 10px) and (max-width: 920px) {
    .footercolumns {
        max-width: 625px;
    }
}

@media only screen and (min-width: 10px) and (max-width: 650px) {
    .content-right {
        display: none;
    }

    .content-left {
        width: 95%;
    }
}