*,
html {
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


body {
    background-image: url('../comida2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    /* backdrop-filter: blur(0px); */
    background-position: center;
}

.main-container {
    overflow-y: scroll;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    padding-top: 5rem;
    padding-bottom: 2rem;
    
}

.main-container::-webkit-scrollbar{
    display: none;
}

.title-container img {
    height: 7rem;
    margin-right: 1rem;
}

.title-container h1 {
    font-size: 4rem;
}

.title-container {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    justify-content: center;
}



.content-container {
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-self: start;
}

.description {
    /* line-height: 1.3rem; */
    font-size: 1.3rem;
    width: 60%;
    text-align: center;
    margin: 0 auto;
    letter-spacing: .04rem;
    color: #e4e4e4;
}


.download-button {
    background: #000;
    display: flex;
    text-decoration: none;
    color: white;
    padding: .6rem;
    /* padding-right: 0; */
    /* min-width: 11rem; */
    text-align: center;
    align-items: center;
    border-radius: .6rem;
    outline: solid 1px grey;
    width: 11rem;
    margin: auto;
    margin-top: 2rem;
}

.download-button p{
    display: inline-block;
    margin: 0;
}

.download-button div {
    width: 100%;
    /* margin-left: .1rem; */
    /* background: green; */
    
}

.download-button p:nth-child(1) {
    font-size: .6rem;
    text-transform: uppercase;
}

.download-button p:nth-child(2) {
    font-size: .9rem;
}

.download-button img {
    height: 2rem;
}

.documentacion-container{
    margin-top: 3rem;
    /* background: green; */
}
.txt-documentacion{
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

.links-container{
    display: flex;
    margin-top: 1rem;
    justify-content: space-evenly;
}

.links-container a::before{
    content: 'Ver ';
}
.links-container a{
    direction: none;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 1rem;
    padding: .5rem .7rem;
    background: rgb(121, 121, 121);
    outline: solid 1px grey;
    letter-spacing: 1px;
}


@media screen and (max-width:960px) {
    .main-container{
        padding-top: 2rem;
        
    }
    .title-container{
        flex-direction: column;

    }
    .description{
        width: 90%;
    }
    .title-container h1{
        font-size: 3rem;
        margin-top: .6rem;
    }
    .content-container {
        width: 100%;
    }
    .links-container{
        flex-direction: column;
        gap: 1rem;
        align-items: center;

    }
}