/*
Theme Name: Netmatters Theme
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: netmatters-theme
*/
* {
  font-family: Poppins, sans-serif;
}
h1 {
  text-align: center;
}
li, a {
  list-style: none;
  text-decoration: none;
  color: rgb(48, 141, 121);
  font-weight: 500;
}
/* span {
  width: 900px;
} */
.container {
  width: 1200px;
  margin: 0 auto;
}
.socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  padding: 10px 0;
}
.social {
  padding-left: 25px;
  font-size: 1.5rem;
}
body {
  margin: 0 auto;
  background-color:rgb(206, 253, 237);
}
.title-nav {
  display: flex;
  flex-direction: row;
}
.top-header {
  background-color: rgb(173, 243, 200);
}
.top-menu {
  display: flex;
  justify-content: space-evenly;
  color: rgb(48, 141, 121);
}
.top-menu>li {
  margin-left: 25px;
}
.top-menu>ul>li>a {
  color: rgb(48, 141, 121);
}
.title {
  text-align: left;
  font-weight: 700;
  font-size: 2rem;
  margin: 0;
}
.title>a {
  color: rgb(48, 141, 121);
}
.flex-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.flex-header>.navigation {
  color: white;
}
.page-title {
  text-align: center;
}
img {
  margin-right: 10px;
  border: 1px solid black;
  margin: 0 auto;
  border-radius: 10%;
}
i {
  color: rgb(48, 141, 121);
}
.content {
  margin: 0 auto;
  color: rgb(48, 141, 121);
}
footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  color: white;
  background-color: rgb(66, 194, 166);
}
.copy {
  background-color: rgb(48, 141, 121);
}
#copy {
  text-align: center;
}                                  
.footer-menus {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;             
  padding: 50px 0;
}
ul {              
  padding: 0;
}
ul>li {
  line-height: 1.25;
  font-size: 1.25rem;
  font-weight: 400;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 1200px;
  margin: 100px auto;
  grid-gap: 15px;
}
.project {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  height: auto;
  width: auto;
  max-height: 800px;
  padding: 30px;
  border-radius: 5%;
  box-shadow: 0 3px 35px rgba(0,0,0, .2);
  color: rgb(48, 141, 121);
}
.project>a {
  width: 100px;
}
.thumbnail {
  margin: 0 auto;
}
.post {
  width: 800px;
  padding: 100px 0;
  margin: 0 auto;
}
.read-more {
  padding: 10px;
  border-radius: 10px;
  background-color: rgb(48, 141, 121);
  color: white;
  width: 25%;
  margin: auto auto 0;
  transition: background-color 0.5s, color 0.5s;
  border: 1px solid rgb(206, 253, 237);
}
.read-more:hover {
  background-color: rgb(206, 253, 237);
  color: rgb(48, 141, 121);
  border-color: rgb(48, 141, 121);
}
