@media only screen and (max-width: 600px){
  article {
    --img-scale: 1.3;
    --title-color: rgb(255, 255, 255);
    border-radius: 16px;
    background-color: #d8d6d6;
    overflow: hidden;
    color: rgb(0, 0, 0); 
    margin-bottom: 90px;
  }
  
  .lblindex{
  font-weight: bold;
  color:#F45197;
  }
  
  ul {
    list-style: none;
  }
  
  img{
    border-radius: 20%;
  }
  
  article h2 {
    color: #000F9F;
    margin-bottom: 5px;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    padding-bottom: 20px;
    font-weight: bold;
    margin-top: 20px;
  }
  
  figure {
    margin: 0px;
    padding: 0px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border-radius: 5%;
  }
  
  article img {
    max-width: 100%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.6s ease-in-out;
  }
  
  .article-body {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
  }
  
  article:has(:hover, :focus) {
    --img-scale: 1.1;
  }
  
  .articles {
    display: grid;
    max-width: auto;
    margin-inline: auto;
    padding-inline: 14px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 0px;
  }  
}
@media only screen and (min-width: 600px){
  article {
    --img-scale: 1.3;
    --title-color: rgb(255, 255, 255);
    border-radius: 16px;
    background-color: #d8d6d6;
    overflow: hidden;
    color: rgb(0, 0, 0); 
    margin-bottom: 90px;
  }
  
  .lblindex{
  font-weight: bold;
  color:#F45197;
  }
  
  ul {
    list-style: none;
  }
  
  img{
    border-radius: 20%;
  }
  
  article h2 {
    color: #000F9F;
    margin-bottom: 5px;
    font-size: 2.2rem;
    letter-spacing: 0.06em;
    padding-bottom: 20px;
    font-weight: bold;
    margin-top: 20px;
  }
  
  figure {
    margin: 0px;
    padding: 0px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border-radius: 5%;
  }
  
  article img {
    max-width: 100%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.6s ease-in-out;
  }
  
  .article-body {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    font-size: 19px;
    text-align: center;
  }
  
  article:has(:hover, :focus) {
    --img-scale: 1.1;
  }
  
  .articles {
    display: grid;
    max-width: auto;
    margin-inline: auto;
    padding-inline: 104px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 0px;
  } 
}
@media only screen and (min-width: 768px){
  article {
    --img-scale: 1.3;
    --title-color: rgb(255, 255, 255);
    border-radius: 16px;
    background-color: #d8d6d6;
    overflow: hidden;
    color: rgb(0, 0, 0); 
    margin-bottom: 90px;
  }
  
  .lblindex{
  font-weight: bold;
  color:#F45197;
  }
  
  ul {
    list-style: none;
  }
  
  img{
    border-radius: 20%;
  }
  
  article h2 {
    color: #000F9F;
    margin-bottom: 5px;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    padding-bottom: 20px;
    font-weight: bold;
    margin-top: 20px;
  }
  
  figure {
    margin: 0px;
    padding: 0px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border-radius: 5%;
  }
  
  article img {
    max-width: 100%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.6s ease-in-out;
  }
  
  .article-body {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    font-size: 17px;
    text-align: center;
  }
  
  article:has(:hover, :focus) {
    --img-scale: 1.1;
  }
  
  .articles {
    display: grid;
    max-width: auto;
    margin-inline: auto;
    padding-inline: 104px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 10px;
  } 
}
@media only screen and (min-width: 992px){
  article {
    --img-scale: 1.3;
    --title-color: rgb(255, 255, 255);
    border-radius: 16px;
    background-color: #d8d6d6;
    overflow: hidden;
    color: rgb(0, 0, 0); 
    margin-bottom: 90px;
  }
  
  .lblindex{
  font-weight: bold;
  color:#F45197;
  }
  
  ul {
    list-style: none;
  }
  
  img{
    border-radius: 20%;
  }
  
  article h2 {
    color: #000F9F;
    margin-bottom: 5px;
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    padding-bottom: 20px;
    font-weight: bold;
    margin-top: 20px;
  }
  
  figure {
    margin: 0px;
    padding: 0px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border-radius: 5%;
  }
  
  article img {
    max-width: 100%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.6s ease-in-out;
  }
  
  .article-body {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  article:has(:hover, :focus) {
    --img-scale: 1.1;
  }
  
  .articles {
    display: grid;
    max-width: auto;
    margin-inline: auto;
    padding-inline: 104px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 10px;
  } 
}
@media only screen and (min-width: 1200px){
  article {
    --img-scale: 1.3;
    --title-color: rgb(255, 255, 255);
    border-radius: 16px;
    background-color: #d8d6d6;
    overflow: hidden;
    color: rgb(0, 0, 0); 
    margin-bottom: 90px;
  }
  
  .lblindex{
  font-weight: bold;
  color:#F45197;
  }
  
  ul {
    list-style: none;
  }
  
  img{
    border-radius: 20%;
  }
  
  article h2 {
    color: #000F9F;
    margin-bottom: 5px;
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    padding-bottom: 20px;
    font-weight: bold;
    margin-top: 20px;
  }
  
  figure {
    margin: 0px;
    padding: 0px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border-radius: 5%;
  }
  
  article img {
    max-width: 100%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.6s ease-in-out;
  }
  
  .article-body {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  article:has(:hover, :focus) {
    --img-scale: 1.1;
  }
  
  .articles {
    display: grid;
    max-width: auto;
    margin-inline: auto;
    padding-inline: 104px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 10px;
  } 
}
@media only screen and (min-width: 1590px) {
  article {
    --img-scale: 1.3;
    --title-color: rgb(255, 255, 255);
    border-radius: 16px;
    background-color: #d8d6d6;
    overflow: hidden;
    color: rgb(0, 0, 0); 
    margin-bottom: 90px;
  }
  
  .lblindex{
  font-weight: bold;
  color:#F45197;
  }
  
  ul {
    list-style: none;
  }
  
  img{
    border-radius: 20%;
  }
  
  article h2 {
    color: #000F9F;
    margin-bottom: 5px;
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    padding-bottom: 20px;
    font-weight: bold;
    margin-top: 20px;
  }
  
  figure {
    margin: 0px;
    padding: 0px;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border-radius: 5%;
  }
  
  article img {
    max-width: 100%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.6s ease-in-out;
  }
  
  .article-body {
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  article:has(:hover, :focus) {
    --img-scale: 1.1;
  }
  
  .articles {
    display: grid;
    max-width: auto;
    margin-inline: auto;
    padding-inline: 64px;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 70px;
    margin-top: 10px;
  }
}