﻿a {
    padding: 10px 10px;
    font-weight: 600;
    background-color: #b94e3c;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8em;
    text-decoration: none;
}

.buy-buttons {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: left;
    gap: 12px;
}

header {
    display: grid;
    grid-template-columns: auto 1366px auto;
}

    header h1 {
        grid-column: 2/3;
    }

.section {
    display: grid;
    grid-template-columns: auto 1366px auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

    .section:first-of-type {
        padding-top: 0px;
    }

.content {
    grid-column: 2/3;
    display: grid;
    grid-column-gap: 24px;
}

img.cinamatic {
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1); /* soft glow */
    backdrop-filter: blur(8px);
}




.section.story .content {
    display: grid;
    grid-template-columns: 350px auto;
}

.section.death-by-churros {
    background-color: #062656;
}

.section.stranger-spanish {
    background-color: #3a0f0f; /*#577e7c;*/
}

.section.the-social-exorcist {
    background-color: #181818; /*#577e7c;*/
}

.section.asesinato-en-ingles-facil {
    background-color: #062656;
}

footer {
    background-color: #062656;
}

@media (max-width:1475px) {

    header {
        grid-template-columns: auto;
        padding-left: 40px;
        padding-right: 40px;
    }


        header h1 {
            grid-column: 1/2;
        }

    .section {
        grid-template-columns: auto;
    }


    .content {
        grid-column: 1/2;
        padding-left: 40px;
        padding-right: 40px;
    }
}


@media (max-width:1280px) {

    .section.story .content {
        grid-template-columns: 300px auto;
    }

        .section.story .content img {
            width: 300px;
        }


        .section.story .content > div h2 {
            margin-top: 0px;
        }
}


@media (max-width:1000px) {
    .section .content > div p {
        font-size: 1em;
    }

    .section.story .content {
        grid-template-columns: 225px auto;
    }


        .section.story .content img {
            width: 100%;
        }
}





@media (max-width:850px) {

    .section .content > div p {
        font-size: 0.95em;
        margin-top: 12px;
    }

    .section .content > div h2 {
        margin-bottom: 0px;
    }

    .section .content > div h3 {
        margin-top: 13px;
        margin-bottom: 13px;
    }
}


@media (max-width:768px) {

    .section.story .content {
        grid-template-columns: auto;
    }

        .section.story .content > img {
            width: 225px;
            justify-self: center;
        }

        .section.story .content > div h2 {
      
            margin-top:48px;
        }

        .section.story .content > div h3 {
         
            margin-top:24px;
            margin-bottom:24px;
        }

        .section.story .content > div p {
           
        }
}



@media (max-width:650px){

    header {
        padding-left: 20px;
        padding-right: 20px;
    }


    .content {
        padding-left: 20px;
        padding-right: 20px;
    }
}