* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #000000;
    color: #59a851;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
}

a {
    color: #59a851;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    margin: auto;
}

.news-container, .video-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.news-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pie-img{
    font-size: .5rem;
}

.text-container {
    text-align: center;
    color: #59a851;
}


.news-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.news-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
    color: #e4e39d;
}

.news-paragraph-fuente, .fuentes-a {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
    color: #e1f100;
}
.btn-news a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #058626;
    color: rgb(225, 240, 12);
    text-decoration: none;
    border-radius: 5px;
}

.btn-news a:hover {
    background-color: #034406;
}

.nav-main {
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 20px 0;
}

.nav-brand {
    width: 50px;
}

.nav-main ul {
    display: flex;
}

.nav-main ul li {
    padding: 10px;
}

.nav-main ul li a:hover {
    border-bottom: 2px solid #59a851;
}

hr {
    margin: 10px 0;
}

.showcase {
    width: 100%;
    height: 250px;
    background: url(img/showcase5.png) no-repeat center center/cover;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.social p {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.links a {
    margin: 0 30px;
}

.links a i {
    font-size: 3rem;
}

.footer {
    background: #2f3640;
    color: #616161;
    font-size: 12px;
    padding: 20px 0;
    text-align: center;
}

.inline-image {
    display: block;
    max-width: 100%;
    width: 100%;
    max-height: 350px;
    margin: 20px auto; /* Espacio alrededor de la imagen */
    border-radius: 10px;
}

.image-credit {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .news-title {
        font-size: 1.5rem;
    }

    .news-paragraph {
        font-size: 0.9rem;
    }

    .news-container .text-container{
        display:contents;
        flex-direction:column;
        align-items: center;
        margin: 2px;
        padding: 2px;

    }
}

@media (max-width: 700px) {
    /*.menu-btn {
        display: block;
        color: #59a851;
    }
    */
    .nav-main ul.nav-menu.show {
        transform: translateX(-20px);
    }

    .nav-main ul.nav-menu li {
        padding: 20px;
        font-size: 14px;
    }

    .nav-main ul.nav-menu-right {
        margin-right: 40px;
    }

    

}

@media (max-width: 500px) {
    .news-card {
        grid-template-columns: 1fr;
    }

    .showcase {
        background: url(img/header-mediaquery.png) no-repeat center center/cover;
    }

    .card-banner-one .content,
    .cards-banner-two .content {
        width: 80%;
        padding: 60px 20px;
    }
}

@media (max-width: 412px) {
    .video-container {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 50%;
        overflow: hidden;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.news-container .text-container{
    display:contents;
    flex-direction:column;
    align-items: center;
    margin: 5px;
    padding: 5px;

}











































