*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Irish Grover';
}

:root {
    --primary-color: #745031;
    --primary-shaded: #58371B;
    --secondary-color: #F9EE68;
    --highlight-color: #F7FAE3;
    --text-backdrop: #2119;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;


    background-color: var(--primary-color);
    width: 100vw;
    overflow: auto;
    background-image: url('../imgLayout/Rectangle\ 11.png');
    background-position: 10%;
    background-repeat: no-repeat;
    background-size: cover;
}

header{
    position: sticky;
    top: 0px;
    z-index: 1;


    display: flex;
    
    height: 8%;
    width: 100%;
    
    justify-content: center;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5);
    background-color: var(--primary-shaded);
}

.header-content{
    display: flex;
    place-items: center;
    gap: 1rem;
    margin-left:-2rem;
    color: var(--highlight-color);
}

a{
    text-decoration: none;
    font-style: none;

}

h1{
    text-shadow: -2px 2px 0px rgba(0, 0, 0);
    font-weight: 100;
}

h2{
    color: var(--highlight-color);
    font-size: 2.2rem;
    font-weight: 100;
    text-shadow: -2px  4px 4px rgba(0, 0, 0, 0.5);
}


.logo{
    height: 65%;
}



main{
    
    flex-grow: 1;
    height: 87%;
}

ul{
    list-style: none;
}


footer{
    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--highlight-color);
    height: 5%;
    font-weight: 100;

    background-color: var(--text-backdrop);
}

/* RESPONSIVIDADE */

/* Versão Tablet */
@media (min-width:744px){
    header{
        height: 10%;
    }

    h1{
        font-size: 48px;
    }

    footer p{
        font-size: 24px;
    }

}

/* Versão Desktop */

@media (min-width:1000px){
    main{
        display: flex;
        flex-direction: row;

    }



}