body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #007bff;
    }
#historias{
	padding: 4% 10%;
border-radius: 8px;
-webkit-box-shadow: 0px 10px 20px 0px rgba(71,190,245,1);
-moz-box-shadow: 0px 10px 20px 0px rgba(71,190,245,1);
box-shadow: 0px 10px 20px 0px rgba(71,190,245,1);
}
.nav-content{
		border-bottom: 3px solid #007bff;
	-webkit-box-shadow: 0px 10px 20px 0px rgba(71,190,245,1);
-moz-box-shadow: 0px 10px 20px 0px rgba(71,190,245,1);
box-shadow: 0px 10px 20px 0px rgba(71,190,245,1);
	}
    main {
    	margin-top: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    section {
        background-color: #000;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2px;
        border-bottom: 3px solid #007bff;
    }
    article img {
        width: 200px;
        height: 350px;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.5s;
    }
    article img:hover {
        transform: scale(1.1);
    }
    #modal {
    	color: green;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    #modal.active {
        opacity: 1;
        visibility: visible;
    }
    #modal-content {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        transform: scale(0.5);
        animation: grow 3s forwards;
        width: 100%;
        max-width: 800px;
        max-height: 90%;
        overflow-y: auto;
        /*
        -webkit-box-shadow: 3px 1px 45px 12px rgba(58,87,232,1);
-moz-box-shadow: 3px 1px 45px 12px rgba(58,87,232,1);
box-shadow: 3px 1px 45px 12px rgba(58,87,232,1);
        */
        -webkit-box-shadow: 3px 1px 45px 12px rgba(16,173,26,1);
-moz-box-shadow: 3px 1px 45px 12px rgba(16,173,26,1);
box-shadow: 3px 1px 45px 12px rgba(16,173,26,1);

    }
    #modal-content h2 {
        margin-top: 20px;
    }
    #modal-content p {
    	padding: 10px;
    }
    #modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 20px;
        color: white;
        cursor: pointer;
        background: transparent;
        border: none;
    }
    @keyframes grow {
        from {
            transform: scale(0.5);
        }
        to {
            transform: scale(1);
        }
    }
    #desc{
    	width: 25%;
    	padding:3% 2%;
    	text-align: center;
    	color: #fff;
    }
    article #icon{
    	border-radius: 3px;
    	width: 100px;
        height: 35px;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.5s;
    }
    #subtitle{
    	color: #0174DF;
    }