/*---------Estilo general---------*/
html{
    min-width: 340px;
}

body {
	background-color:#F2E8CF ;
    font-family: Arial, sans-serif;
    margin: 0;
}

.logoCont{
    display: flex;
    border-radius: 10px ;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: .2em;
    padding-right: .5em;
}

.onlyLogo{
    height: 70px;
    margin-right: 8px;
}

.nameLogo{
    height: 35px;
}

header{
	display: flex;
	background-color: #20634F;
	height: 70px;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

footer{
    background-color: #20634F;
    padding: 30px 0;
    text-align: center;
    width: 100%;
    color: white;
}

footer > p{
    margin: 0 0 .7em 0;
}

main{
    min-height: 100vh;
    max-height: fit-content;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*--------------------------------*/

.register{
	text-align: center;
	width: 300px;
	background-color: black;
}

.button {
	margin-right:5px ;
    background-color: white;
    color: green; /* Agregado para que el texto sea visible */
    padding: 10px ; /* Agregado para darle un poco de espacio */
    text-decoration: none; /* Quita el subrayado */
    border-radius: 5px; /* Opcional: bordes redondeados */
}

#listButton{
    margin: 0;
    margin-bottom: 1em;
}

.buttonCont{
    justify-content: right;
    /* Agregado para que el texto sea visible */
    text-decoration: none; /* Quita el subrayado */
    border-radius: 5px; /* Opcional: bordes redondeados */
}

.button:hover{
    background-color: #496f49;
    color: white ;
}

a{
	text-decoration: none;
	color: white;
}

.stream_card {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    height: 100%;
    margin: 1.7em 0;
    justify-content: center;
}

.container-card{
    display: flex;
    justify-content: center;
    padding-top: 5em;
    margin-top: 30px;
}

.card {
    box-sizing: border-box;
    padding: 1em;
    background: rgba(217, 217, 217, 0.58);
    border: 1px solid white;
    box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    border-radius: 17px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    font-weight: bolder;
    color: black;
    flex-direction:column;

}

.card-img {
    width: 250px;
    height: 150px;
    object-fit: cover;
}

.card:hover {
    border: 1px solid black;
    transform: scale(1.05);
}

.card:active {
    transform: scale(0.95) rotateZ(1.7deg);
}

.card > h2{
    margin: .3em;
}

main > h2{
    margin-bottom: 0;
}

@media screen and (max-width: 550px){
    img.nameLogo{
        display: none;
    }
    img.onlyLogo{
        margin: 0;
    }
    .logoCont{
        padding: .2em;
    }
    .stream_card{
        flex-direction: column;
    }

    .infoContainer{
        flex-direction: column;
    }
    
    .box > img{
        width: 350px; !important
    }
}

/*Detalles*/
@media screen and (max-width: 950px){
  .infoContainer{
    flex-direction: column;
  }
}
/*--------*/



    

