/*-------------------------------------------------------------------------------------*/
                                    /* HEADER / NAV BAR */
/*-------------------------------------------------------------------------------------*/
body {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
}

body::before {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: -2;

    background-image: url("images/bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
}

body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35vh;
    z-index: -2;
    pointer-events: none;


    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(16, 16, 16, 0.35) 45%,
        #000000 100%

    );
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    color: white;
    font-family: lato black, sans-serif;
    font-size: 25px;
}

.header-containter {
    margin-inline: auto;
    width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;


    background: #202020;
    border-radius: 20px;
    box-shadow: 0px 5px 12px #000000;
}


.navbar a {
    color: white;
    text-decoration: none;
    text-shadow: 1px 4px 1px #000000;
}

.navbar a:hover {
    color: #376dac;
}



.nav__containter {
    display: flex;
    gap: 40px;
    background-color: #151515;
    padding: 15px 50px;
    border-radius: 20px;

    box-shadow: 0px 4px 4px #0b0b0b;

}





/*-------------------------------------------------------------------------------------*/
                                        /* HERO */
/*-------------------------------------------------------------------------------------*/


.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 50px 20px;
}


.hero__text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 18px;
    font-family: lato black, sans-serif;
    text-align: center;
    background-color: #303030;
    border-radius: 10px;
    color:white;
    padding: 1px 20px;
    max-width:600px;
    box-shadow: -1px 5px 12px #0b0b0b;

}

.hero__text h1 {
    text-shadow: 0px 3px 4px #000000;
}

.hero__logo {
    display: flex;
    width: 200px;

    object-fit: cover;
    filter: drop-shadow(0px 9px 12px #000000);

}

.hero__separator {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    border-color: #376dac;
    border-style: solid;
}

