@charset "UTF-8";

html{
  font-size: 100%;
}

body{
  color: black;

}

img{
  width: 100%;
}

li{
  list-style: none;
}


a{
  text-decoration: none;
  color: black;
}


*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.readmore{
 text-align: center;
 font-size: 13px;

}

.readmore a{
  padding-bottom: 1px;
  color: black;
  position: relative;
}

.readmore a::after{
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: black;
  transition: all 0.2s ease;
}

.readmore a:hover::after{
  opacity: 0;
  transform: translateY(3px);
}

.wrapper{
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
}


/*HEADER*/

#site-title{
  width: 100%;
  position: fixed;
  z-index: 10;
  background-color: white;
  
}

#site-title a{
  display: inline-block;
}

#site-title img{
  margin: 25px 0 10px;
}

#menu{
  background-color: black;
  opacity: 0.8;
}

#menu ul{
  display: flex;
  text-align: center;
  
}

#menu li{
  margin: 10px 0;
  margin-right: 50px;
}

#menu a{
  color: white;
}

#pickup{
  display: flex;
  justify-content: space-between;
  padding-top: 160px;
}

#pickup article{
  width: 32%;
}

.pickup-title{
  font-size: 16px;
  margin: 10px 0;
  
}

#pickup-title a{
width: 20px;
}

#continer main{
  width: 65%;
}

.main-title{
  margin-top: 50px;
}

#continer{
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.category{
  display: flex;
}

.category li{
  margin: 20px 20px 10px 0;
}

.category a{
  font-size: 13px;
}

.text{
  padding: 10px 50px 30px;
}


#sideber {
  width: 35%;
  padding: 20px;
}


.author img{
  border-radius: 50%;
  width: 130px;
  height: 130px;
  margin-left: 30%;

}

.sideber-text{
  font-size: 14px;
  font-weight: 350;
  margin: 30px 0 50px;
}

.sideber-title{
  text-align: center;
  padding: 30px;
  font-size: 18px;
}

.ranking-title{
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 40px;
}

.archive{
  border-bottom: 1px solid black;
}


.archive-list li{
  border-top: 1px solid black;
  padding: 20px;

}

.archive-list a{
font-weight: 300;
}

#footer{
  background-color: lightgrey;
  margin-top: 100px;
}

#footer .content{
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-title{
  margin-bottom: 30px;
}

.about{
  width: 30%;
  font-size: 14px;
}

.about-text{
  margin-bottom: 20px;
}

.about-link{
  margin-bottom: 5px;
}

.menu{
  width: 30%;
  font-size: 14px;

}

.menu-list{
  border-bottom: 1px solid black;
  
}

.menu-list li{
  border-top: 1px solid black; 
  padding: 15px;
}

.x{
  width: 30%;
  font-size: 14px;
}

.copyright{
  display: flex;
  justify-content: center;
  font-size: 12px;
  margin-top: 30px;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {

  #pickup{
    flex-direction: column;
  }

  #pickup article{
    width: 100%;
  }

  .readmore{
    margin-bottom: 30px;
  }

  #continer{
    flex-direction: column;
  }

  #continer main{
    width: 100%;
  }

  #sideber{
    width: 100%;
    padding: 0;
  }


  .author img{
    margin-left: 40%;
  }

  #footer .content{
    flex-direction: column;
  }

  #footer .about{
    width: 100%;
    margin-bottom: 50px;
  }

  #footer .menu{
    width: 100%;
    margin-bottom: 50px;
  }

 
}