/*Reset CSS*/
    /* http://meyerweb.com/eric/tools/css/reset/ 
    v2.0 | 20110126
    License: none (public domain)
    */

    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed, 
    figure, figcaption, footer, header, hgroup, 
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
    }
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure, 
    footer, header, hgroup, menu, nav, section {
        display: block;
    }
    body {
        line-height: 1;
    }
    ol, ul {
        list-style: none;
    }
    blockquote, q {
        quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }
    table {
        border-collapse: collapse;
        border-spacing: 0;
    }

/*Variables*/
    :root {
        --headline-color: #EBC7A3;
        --paragraph-color: #9B7753;
        --bg-btn-color: #4B270A;
    }



/*CSS*/
body {
    
    background-image: url('./imgs/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    font-family: "Syne", sans-serif;
}

header {
    margin-bottom: 32px;
}

.container  {
    text-align: center;
    width: 100%;
    padding-inline: 1rem;
}

.links {
    display: grid;
    gap: 10px;
}

.links a {
    background-color: var(--bg-btn-color);
    padding-block: 16px;
    color: var(--headline-color);
    text-decoration: none;
    border-radius: 100px;
}

.gradient {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Para ocupar toda a altura da viewport */
    width: 100%;
    height: 100vh;
    background: rgb(85,49,13);
    background: linear-gradient(0deg, rgba(85,49,13,1) 0%, rgba(85,49,13,1) 58%, rgba(85,49,13,0) 100%);
}

h1 {
    font-size: 64px;
    color: var(--headline-color);
}

p {
    color: var(--paragraph-color);
}

