* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

body {
    background: #eeeeee;
}

.tm-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tm-header {
    background: white;
}

.tm-header::after {
    content: " ";
    clear: both;
    display: block;
    visibility: none;
}

.tm-logo {
    float: left;
}

.tm-nav {
    float: right;
}

.tm-nav ul {
    margin-bottom: 0px;
}

.tm-nav ul li {
    display: inline-block;
}

.tm-nav ul li a {
    padding: 10px 20px;
    text-decoration: none;
    color: firebrick;
    line-height: 60px;
}

.tm-nav ul li a:hover {
    color: blue;
}


/*2nd part code here*/

p {
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
}

ul,
ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

img {
    display: block;
    max-width: 100%;
}

.tm-content {
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 70%;
    float: left;
    margin-right: 20px;
}

.tm-sidebar {
    float: right;
    margin-top: 30px;
    margin-bottom: 30px;
    width: calc(30% - 20px);
}

.tm-sidebar div {
    background: #fff;
    padding: 30px;
}

.tm-article {
    background: #fff;
    padding: 30px;
}

.clearfix::after {
    content: " ";
    clear: both;
    display: block;
    visibility: none;
}

.tm-footer {
    background: #fff;
    text-align: center;
    padding: 20px;
}


