* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

body {
  height: 100vh;
  background-color: #F2F5F9;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

footer.author-info {
  font-size: 14px;
  color: rgb(55, 65, 81);
  text-align: center;
}

.author-info a {
  color: rgb(55, 65, 81);
  text-decoration: underline;
}

/* You are welcome to delete these styles or modify them in your own stylesheet */
.container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 100px 2%;
  
}

.card {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card .card-img{
  width: 100%;
  position: relative;
}

.overlay{
  position:absolute;       
  left:0;
  bottom:0;                 
}

.card .card-img img {
  width: 100%;
  object-fit: cover;
}

.content {
  padding: 0 20px ;
}

.container p {
  color: #4A5567;
  font-size: 17px;
  margin-top: 6px;
  margin-bottom: 22px;
  line-height: 22px;
}

.card hr{
  border: 0;
  height: 1px;
  background-color: #F2F5F9;
  margin: 0 -16px 0  0;
}

.geral-info {
  display: grid;
  grid-template-columns: 70px 1fr; 
  grid-template-rows: auto auto;  
  align-items: center;
  padding: 16px 20px;
  
}

.geral-info .author-img{
  grid-row: 1 / span 2;           
  grid-column: 1;
}

.geral-info .author-img img {
  border-radius: 50%;
  object-fit: cover;
}


.geral-info .author-info{                  
  grid-column: 2;   
  margin-top: 16px;      
}

.card .author-info h2{
  font-size: 16px;
}

.card .author-info p{
  font-size: 16px;
  color: #4A5567;
  margin-top: 0;
}