@charset "UTF-8";

body {
    text-align: left;
    padding: 2%;
    font-family:Verdana, Helvetica, sans-serif;
    font-size:13px;
    color:#333;
    background-image: url(img/leaves-pattern.png);
}

/* POSL image */
#logo {
    width: 30%;
}

/* face image */
#face_img {
    width: 30%;
    border-radius: 50%;
}

div#content {
    width: 100%;
    height: auto;
    overflow: hidden;
    }
div.main {
        width: 70%;
        float: right;
        font-size: medium;
        }
nav {
        /* background-color: #eee; */
        font-size: medium;
        width: 25%;
        float: left;
    }

/* button */
.button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: left;
    max-width: 100%;
    padding: 30px 30px 30px 30%;
    color: #313131;
    transition: 0.15s ease-in-out;
    font-weight: 500;
}

.button a:before, .button a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.button a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.25s;
}
.button a:after {
  left: 0;
  background: #ccc;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.25s;
}
.button a span {
  position: relative;
  transition: all 0.25s;
  z-index: 3;
}

.button a:hover span {
  color: #000;
}
.button a:hover:before {
  left: 2rem;
}
.button a:hover:after {
  right: 0;
  width: 100%;
}


/* news */
.newslist {
    max-width: 90%;
    margin: 0 auto;
  }
  
  @media screen and (max-width: 800px) {
    .newslist {
      font-size: 12px;
      padding: 0 15px;
    }
  }
  
  .newslist li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 10px;
    border-top: 2px solid black;
    line-height: 1.5;
  }
  
  .newslist li:last-child {
    border-bottom: 2px solid black;
  }
  
  .newslist li time {
    padding-right: 20px;
  }
  
  .newslist li a {
    color: cornflowerblue;
    text-decoration: none;
  }

.author__urls social-icons {
    -webkit-text-size-adjust: 100%;
    font-size: 18px;
    color: #494e52;
    line-height: 1.5;
    font-family: -apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;
    box-sizing: border-box;
    orphans: 3;
    widows: 3;
    right: 0;
    list-style-type: none;
    border-radius: 4px;
    z-index: -1;
    cursor: default;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}