*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    height: 100%;
    width: 100%;
    /* background-image: linear-gradient(to right top, #a1d4dd, #a0cfdd, #a1cadd, #a3c4db, #a6bfd8, #a4bdd5, #a1bcd3, #9fbad0, #99bbcc, #95bcc7, #94bdc1, #95bdba); */
    background: #EEAECA;
    background: radial-gradient(circle, rgba(238, 174, 202, 0.46) 0%, rgba(154, 186, 231, 0.5) 93%, rgba(148, 187, 233, 1) 100%);
}
a
{
    text-decoration: none;
}
.container
{
    font-family: "Urbanist", sans-serif;
    max-width: 85vw;
    padding: 2rem 1rem;
    margin: 0 auto;
    background-color: rgba(173, 216, 230, 0.222);
}
.header-container
{
    margin-bottom: 2.8rem;
}
.header-title
{
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 4rem;
    text-align: center;
    background-image: url("./images/Logo\ img.jpg");
    background-size: cover;
    background-position: center;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.header-description
{
    max-width: 568px;
    text-align: center;
    color: rgba(0, 0, 0, 0.858);
    margin: 0 auto;
    font-weight: bold;
}
.main-container
{
    display: grid;
    gap: 1.5rem;
    /* grid-template-columns: repeat(1,1fr); */
    grid-template-columns: repeat(auto-fit,minmax(350px,400px));
    justify-content: center;
}

/* @media (min-width:650px) 
{
    .main-container
    {
        grid-template-columns: repeat(2,1fr);
    }   
}
@media (min-width:1080px) 
{
    .main-container
    {
        grid-template-columns: repeat(3,1fr);
    }   
}
@media (min-width:1340px) 
{
    .main-container
    {
        grid-template-columns: repeat(4,1fr);
    }   
} */
.card-container
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid rgba(188, 187, 187, 0.667);
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: transform 0.4s ease-in-out;
    -webkit-transition: transform 0.4s ease-in-out;
    -moz-transition: transform 0.4s ease-in-out;
    -ms-transition: transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    
}
.card-image-container {
  width: 100%;
  max-width: 400px;
  height: 200px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-title-container
{
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}
.card-container:hover
{
    .card-image
    {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transition-duration: 200ms;
}
}
.card-title
{
    font-size: 1rem;
    font-weight: 8 00;
    color: rgb(15, 15, 15);
    line-height: 1.5rem;
    margin-bottom: 0.2rem;
}
.card-title:hover 
{
    color: rgb(31, 31, 119);
}
.card-description
{
    font-size: 0.9rem;
    font-weight: 400;
}
.card-footer-container
{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.author-container
{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}
.author-avatar-container
{
    height: 2.5rem;
    width: 2.5rem;
    overflow: hidden;
    border: 1px solid rgb(90, 89, 89);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: transparent
}
.author-info-container
{
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}
.author-info-container-name
{
    font-weight: bold;
    color: rgb(73, 73, 177);
}
.author-info-container-date
{
    color: rgb(87, 85, 85);
}
.card-tag-container
{
    font-weight: 0.8rem;
    text-align: center;
    border: 1px solid rgb(91, 90, 90);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    /* line-height: 1rem; */
    padding: 0.25rem 0.5rem;
    margin-left: 2rem;
}