@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ContenedorInicio{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.ContenedorContenido{
    position: relative;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 82%;
    background-color: none;
    border-radius: 10px 10px;
	overflow: auto;
    padding-top: 15px;
}

.GridContenido{
    display: grid;
    grid-template-rows: none;
    grid-row-gap: 20px;
    justify-items: center;
    align-items: center;
    overflow: auto;
    padding: 5px 10px;
    height: auto;
    opacity: 1;
}

.ContenedorInfo{
    width: 75%;
    padding: 10px;
    background-color: white;
    border-color: rgb(199, 199, 199);
    border-width: 2px;
    border-style: solid;
    /*background: linear-gradient(122deg, rgba(235, 5, 185, 0.7) 0%, rgba(255, 116, 232, 0.7) 81%);*/
    border-radius: 20px 10px;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    font-family: 'Montserrat';
    font-weight: bold;
    overflow: auto;
    opacity: 1;
    transition: all 0.4s ease;
}
.ContenedorInfo:hover{
    background-color: white;
    cursor: pointer;
    /*background: linear-gradient(122deg, rgba(235, 5, 185, 1) 0%, rgba(255, 116, 232, 1) 81%);*/
    /*filter: drop-shadow(15px 15px 8px rgb(212, 55, 178));*/
}

.PonentesLink{
    text-decoration: none;
    background-color: rgb(153, 45, 180);
    color: white;
    border-radius: 15px 15px;
    padding: 3px 8px;
    transition: all 0.3s ease;
}
.PonentesLink:hover{
    background-color: rgb(226, 92, 157);
    color: rgb(255, 255, 255);
}

.ContenedorContenido::-webkit-scrollbar{
	width: 7px;
}
.ContenedorContenido::-webkit-scrollbar-thumb{
	background: linear-gradient(184deg, rgba(114, 60, 185, 1) 0%, rgba(214, 57, 133, 1) 100%);
	border-radius: 5px;
}

.MesasTitulos{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

span{
    color: rgb(153, 45, 180);
}

.TituloParticipantes{
    font-style: italic;
    color: black;
}

.TituloSemblanza{
    color: rgb(170, 170, 170);
    font-style: italic;
    font-weight: bold;
}

.InstitucionParticipante{
    color: rgb(138, 138, 138);
    font-style: italic;
    font-weight: bold;
}

@media (max-width: 976px){
	.ContenedorContenido{
		padding-top: 30px;
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 3px;
		font-size: 15px;
		overflow: auto;
	}
}

@media (max-width: 600px){
	.ContenedorContenido{
		padding-top: 35px;
		padding-left: 5px;
		padding-right: 5px;
		padding-bottom: 5px;
		font-size: 13px;
		overflow: auto;
	}
}

@media (max-width: 361px){
	.ContenedorContenido{
		padding-top: 40px;
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		font-size: 13px;
		overflow: auto;
	}
}
