@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --fontePrimaria:"Montserrat", sans-serif;
    --titulo: #124026;
    --colorHeader: #f0e224;
    --header: #2C5F2D;
    --text: black;
    --footer: #64352b;
}


* {
    margin: 0;
    padding: 0;
    font-family: var(--fontePrimaria)
}

p {
    font-size: 1.2em;
}

header > nav {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

.navbar {
    background-image: linear-gradient(var(--header), rgba(0, 0, 0, 0.918)) !important;
}

.navbar-nav .link {
    color: white;
    font-size: 1.3rem;
    position: relative;
    font-weight: normal;

    position: relative;
    display: inline-block;
    text-decoration: none;

    margin: 25px;
 }

.link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    background-color: white; 
    left: 0;
    bottom: -2px;
    transition: all 0.6s ease; 
    border-radius: 4px;
}

.link:hover::after {
    width: 100%;
}

h1 {
    color: var(--header);
    font-weight: 700;
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo {
    width: 250px;
    height: 85px;
    padding-left: 10px;
}

body {
    background-image: url(../img/bb_bg.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
}

main {
    background-color: #fce8aef5;    
    width: 1150px;
    margin: auto;
    border-radius: 10px;
    padding: 20px 40px 20px 40px;
}

.container-footer > p{
    margin: 0;
    font-size: 0.85em;
    padding: 10px 100px;
    text-align: center;
    color: antiquewhite;
}

footer {
    margin-top: 10px;
    background-color: var(--footer);   
}

