* {margin:0; padding:0;text-decoration: none; color:black;}
*:focus {
    outline: none;
}

html,body {
  width:100%;
  height:100%;
  /*font-family: 'Cutive Mono', monospace;*/
  font-family: 'Arvo', serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#container {
  width:100%;
  height:100%;
  display:flex;
  overflow: hidden;
  background:#f1f5f7;

}

#menu {
  width:15%;
  height:100%;
  background:white;
  float:left;
  text-align: center;
  padding:30px;
  box-sizing: border-box;
}

#logo {
  width:100px;
  height:80px;
  border-radius: 50%;
  display:inline-block;
}

nav {
  margin-top:60px;
}

nav ul {
  list-style-type:none;
  text-align:left;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size:13px;
}

nav ul li {
  margin:10px 0;
  cursor:pointer;
}

nav ul li.active > a {
  border-bottom:2px solid black;
}

nav ul li a{
  text-decoration: none;
  color:black;
  transition: all 0.3s;
}

nav ul li a:hover{
  border-bottom:2px solid black;
  font-size:18px;
}

#content {
  width:60%;
  height:auto;
  min-height:100%;
  float:left;
  border-right:1px solid rgba(0,0,0,.2);
  padding:50px 0;
  box-sizing: border-box;
  overflow: auto;
  background:white;
}


.content-wrap {
  margin:80px 0;
  box-sizing: border-box;
}

#content h1, #content p, #content h4 {
  padding:10px 15px;
}

#content h1 {
  font-weight: 400;
}

#content h4 {
  text-decoration: underline;
}

#content p {
  /*font-family: 'Cutive Mono', monospace;*/
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: normal;
  padding:0 100px 0 15px;
  color:#767676;
}




.clear {
  clear:both;
  padding:30px 0;
}

.content-wrap h1 {
  font-size:20px;
}

.content-wrap p {
  margin-top:15px;
}

.imgs {
  width:100%;
  height:300px;
  background:lightgreen;
  opacity: 0.5;
}

.imgs img {
  width:100%;
  height:100%;
  text-align: center;
}


#news {
  width:25%;
  height:100%;
  float:left;
  padding:50px 20px;
  box-sizing: border-box;
}

.feed {
  width:100%;
  height:auto;
  min-height:100px;
  background:white;
  border-radius: 3px;
  border:1px solid rgba(0,0,0,.2);
  padding:15px;
  box-sizing: border-box;
  margin-bottom:50px;
}

.header {
  text-align:center;
  height:30px;
  border-bottom: 1px solid rgba(0,0,0,.2);
  margin-bottom:5px;
}

.feed p {
  font-size:13px;
  font-weight: 200;
}

.feed input {
  width: 100%;
  font-family: Lato, sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-top: 15px;
  padding: 12px 15px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  box-sizing: border-box;
  background: #FFF056;
  border-radius: 20px;
  color:black;
}

.feed input::-webkit-input-placeholder {
   color: rgba(0,0,0,.6);
}

.books {
  list-style-type:none;
}

.books li {
  height:40px;
  width:auto;
  min-width: 10px;
  background:#6DBDD6;
  margin:10px 0;
  border-radius: 30px;
  text-align: left;
  line-height: 40px;
  padding-left:15px;
  box-sizing: border-box;
  cursor:pointer;
  color:white;
}
