:root{
    --negro:#242424;

    
    --segundo-color:#e4cb86;
    --tercer-color: white;
    --color-section:#333;

    --font-color:#bbb9b9;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    font-size: 62.5%;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}
body{
    display: grid;
    min-height: 100vh;
    grid-template-rows:auto 1fr auto; 
    background-color:var(--negro) ;
}
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cinzel+Decorative:wght@700&family=Corben&display=swap');
.header-conteiner{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

h1{
    color: var(--segundo-color);
    font-size: 3rem;
    max-width: 90%;
    font-family: 'Cinzel', serif;
}

.titulo{
    width: 90%;
    height: 100px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
}

/* ---------------------------------------------------------- */
.main-conteiner{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 10px;
}

.main-section{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 95%;
    height: auto;  
}
.main-section__article{
    display: flex;
    width: 100%;
    min-height: 10rem;
    flex-direction: column;
    margin: 1.3rem 0 1.3rem 0; 
    border-radius: .3rem;
    padding: 1rem;
    background-color: var(--color-section);
}
.main-section__article:hover{
    opacity: .6;
}
.artile-content > a {
    padding:.5rem;
    border-radius: .4rem;
    text-decoration: none;
    height: auto;
    margin-bottom: 1rem;
}
h3{
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    color: var(--tercer-color);
    font-size: 1.9rem;
    margin-bottom: .7rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
}
.contenido-resumen{
    display: flex;
    flex-direction: column;
    height: auto;
}
.artile-content{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    height: auto;
    width: 100%;
}
.article-title{
    border-bottom: 1px solid var(--tercer-color);
    margin-bottom: 1rem;
}
figure{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 3rem;
}
figure > img{
    width: 100%;
}
.contenido-resumen > p {
    color: var(--tercer-color);
    font-size: 1.5rem;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    text-align: justify;
}
.contenido-resumen-img{
    display: flex;
    flex-direction: column;
    height: auto;
}
.contenido-resumen-img > p {
    color: var(--tercer-color);
    font-size: 1.5rem;
    height: auto;
      font-family: 'Montserrat', sans-serif;
    text-align: justify;
}
/* -------------------------- */
/* recomendable no mover */
.tarjet{
    width: 100%;
    height: 31px;
    display: grid;
    display: flex;
    flex-direction: row;
}
.tarjet > img{
    width: 31px;
    height:31px;
    border-radius: 50%;
}
.tarjet > div{
   margin-left: 1rem;
}
div > p {
    margin: 0;
    font-size: 1.2rem;
    color: var(--tercer-color);
}
/* hasta aca */
/* ----------------- */
.botton-flotante{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width:4rem;
    height:4rem;
    border-radius: 50%;
    z-index: 1;
}
.botton-flotante-link{
    display: flex;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: var(--tercer-color);
    text-decoration: none;
    flex-direction: column;
    justify-content: center;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    background-color: var(--segundo-color);
    box-shadow: 0px 0px 18px 0px rgba(254,139,72,1);
    align-items: center;
}
.user-boton{
    display: flex;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    padding-bottom: 0rem
}
.casa{
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
}
/* -------------------------------------------- */
.contenido-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    list-style: none;
    
}
.footer-class{
    display: flex;
    color: var(--tercer-color);
    font-size: 1.1rem;
} 
.footer{
    display: flex;
}
.footer  a{
    margin-left: 2rem ;
    margin-right: 2rem;
    max-width: 40px;
    text-decoration: none;
    color: var(--tercer-color);
    font-size: 1.1rem;
}


