@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');
@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Eagle+Lake&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "MedievalSharp", cursive;
}

body {
    background: var(--cor-preto-1);
    min-height: 100vh;
    position: relative;
}

.container {
    background-image: url('../images/bg-dragon-fly.gif');
    background-size: auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left;
    background-color: var(--cor-branco-3); 
    padding-top: 130px;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px; 

    &::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            var(--cor-branco-3) 30%,
            var(--cor-branco-3) 100%
        );
        z-index: -1;
        pointer-events: none;
    }
}

.rodape{
    display: flex;
    position: absolute;
    justify-content: right;
    bottom: 0;
    right: 0;
    z-index: 1;
    height: 100px;
    width: 100%;
}