
@import url('https://fonts.googleapis.com/css2?family=Reddit+Mono:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400;1,500&display=swap');


/* Estilos para dispositivos grandes */
@media (min-width: 821px) {
    main{
        display: grid;
        max-width: 900px;
        justify-content: center;
    }
    .title{
        display: flex;
        gap: 2%;
        justify-content: left;
        align-items: center;
        min-height: 70px;
    }
    .imgCont img{
        width: 20vh;
        height: 20vh;
        min-width: 200px;
        min-height: 200px;
        border-radius: 50%;
    }
    .subtitulo{
        display: flex;
        gap: 1%;
        align-items: center;
        justify-content: left;
        margin-top: -6%;
    }
    .subtitulo img{
        width: 30px;
        height: 30px;
    }
    .contenedores{
        display: grid;
        grid-template-columns: 1fr
    }
    .innerContainer
    {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 5%;
    }
    h1{
        font-size: 45px;
        margin-bottom: -2.5%;
    }
    h2{
        font-size: 27px;
        margin-bottom: 25px;
    }
    
}
/* Estilos para dispositivos pequeños */
@media (max-width:539px) {
    body {
        margin-left: 10%;
        margin-right: 10%;
    }
    .title{
        justify-content: center;
        align-items: center;
    }
    .titulo{
        align-items: center;
        justify-content: center;
        width: auto;
        height: min-content;
    }
    .imgCont
    {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .imgCont img
    {
        min-width: 20px;
        min-height: 20px;
    }
    .title img{
        align-items: center;
        max-width: 20vh;
        max-height: 20vh;
        border-radius: 50%;
    }
    .subtitulo{
        display: flex;
        gap: 1%;
        align-items: center;
        justify-content: center;
        margin-top: -4%;
    }
    .subtitulo img{
        max-width: 2vh;
        max-height: 2vh;
        min-width: 20px;
        min-height: 20px;
    }
    h1{
        font-size: 35px;
        margin-bottom: -2.5%;
        text-align: center;
    }
    h2{
        font-size: 25px;
        text-align: center;
        margin-bottom: -1%;
    }   
    .contenedores{
        display: grid;
        grid-template-columns: 1fr;
    }
    .innerContainer
    {
        display: grid;
        grid-template-columns: 1fr;
    }
    ul {
        list-style: none; /* Elimina los puntos */
        padding-left: 0; /* Elimina el padding predeterminado del <ul> */
        margin-left: 0; /* Asegura que el margen izquierdo sea cero */
    }
    ul li {
        text-align: center; /* Justifica el texto dentro de cada elemento de la lista */
        font-weight: bold;
    }
}
@media (min-width: 540px) and (max-width:821px){
    .title{
        justify-content: center;
        align-items: center;
    }
    .titulo{
        align-items: center;
        justify-content: center;
        width: auto;
        height: min-content;
    }
    .imgCont
    {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .imgCont img
    {
        /*min-width: 20px;
        min-height: 20px;*/
        width: 60vh;
        height: 60vh;
    }
    .title img{
        align-items: center;
        max-width: 20vh;
        max-height: 20vh;
        border-radius: 50%;
    }
    .subtitulo{
        display: flex;
        gap: 1%;
        align-items: center;
        justify-content: center;
        margin-top: -2%;
    }
    .subtitulo img{
        max-width: 2vh;
        max-height: 2vh;
        min-width: 20px;
        min-height: 20px;
    }
    h1{
        font-size: 35px;
        margin-bottom: -2.5%;
        text-align: center;
    }
    h2{
        font-size: 25px;
        text-align: center;
        margin-bottom: -1%;
    }  
    .contenedores{
        display: grid;
        grid-template-columns: 1fr;
    }
    .innerContainer
    {
        display: grid;
        grid-template-columns: 1fr;
    }
    
}
/*COSAS COMUNES*/
body
{
    font-family: "Reddit Mono", monospace;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    margin-bottom: 2%;
    margin-top: 4%;
    margin-left: 10%;
    margin-right: 10%;
    justify-content: center;
    display: flex;
}
ul li {
    margin-bottom: 15px; /* Añade espacio entre los elementos */
}
hr
{
    margin-top: -1.5%;
    margin-bottom: 2%;
}
p{
    line-height: 1.5;
    font-size: 15px;
}
h3
{
    font-size: 20px;
} 
.content
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 5px solid black;
    height: fit-content;
    gap: 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    padding: 10px;
    position: relative;
}
.card
{
    /* border: 2px solid black;*/
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    height: 100%;
    padding: 0%;
    /*border: 2px solid red;*/
}
.card span{
    display: none;
}
.LeerMas{
    width: 100%;
}
.readMore{
    text-decoration: underline;
}
.readMore:hover{
    cursor: pointer;
}
.botones{
    width: 100%;
    display: flex;
    gap: 5%; /* Espaciado entre botones */
}
button{
    height: 40px;
    width: 80px;
    border-radius: 10px;
}
.btn-social {
    color: black; 
    border: none; 
    padding: 10px 20px; /* Espaciado interno */
    font-size: 15px; /* Tamaño de fuente */
    cursor: pointer; /* Cambia el cursor al pasar por encima */
    align-items: center; /* Centrar verticalmente */
    transition: background-color 0.3s, color 0.3s; /* Transiciones suaves */
    text-decoration: none; /* Sin subrayado */
}
.btn-social:hover {
    filter: invert(100%); 
}
h4{
    margin-bottom: -2%;
}
#btn-github, #btn-web{
    width: 100%;
}
/*.LeerMas{
    /*border: 2px solid black;
}*/

.innerContainer{
    gap: 10px;
}
.links
{
    font-weight: bold;
    font-style: italic;
    color:rgb(153, 0, 133);
}
