:root {
    --cHeader: rgb(44, 52, 95);
    --cFooter: rgb(69, 86, 133);
    --background: #333333;

    --bs-primary: var(--cHeader);
    --bs-secondary: var(--background);
}

body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.blur {
    filter: brightness(0.8) blur(5px);
}

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100vw;
    height: fit-content;
    padding: 5vh;   
}

/******----- HEADER -----******/

nav {
    position: relative;
    background-color: var(--background);
    color: white;
    display: flex;  
    justify-content: center;
    height: 7rem;
    padding-top: 1.75rem;
    border-bottom: 2px white solid;
}

/*nav::after {
    content: " ";
    color: white;
    width: 75vw;
    height: 9rem;
    position: absolute;
    top: -4rem;
    right: 0;
    transform: skewy(3deg);
    background-color: var(--background);
    box-shadow: 0 10px 11px rgba(255, 255, 255, 0.2);
    z-index: 5;
}*/

.navItems {
    display: flex;
    flex-direction: row;
}

#header {
    background-color: var(--cHeader);
    color: white;
    height: 11vh;
    position: fixed;
    top: 0;
    height: 0;
    width: 50vw;
    display: flex;
    align-items: center;
    transform: skew(0deg, 10deg)
}

#headerLogo {
    position: relative;
    width: 6rem;
    height: 3.5rem;
    padding: 9px;
    border-top:  solid 1px white;
    border-bottom: solid 1px white;
    margin: 0 10px;
    border-radius: 5px 5px;
}

/*****----- FOOTER -----******/

footer { 
    position: relative;
    width: 100vw;
    min-height: 10vh;
    color: white;
    background-color: var(--cFooter);
    text-align: center;
    padding-top: 10px;
}

.hl {
    margin-top: 0;
    width: 80vw;
    margin-inline: auto;
    padding: 1px;
    background-image: linear-gradient(to right, var(--cFooter), rgba(255, 255, 255, 0.769), var(--cFooter));
}

.footerInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: .5%;
    width: 26vw;
    height: fit-content;
}

.footerInfo a {
    color: white;
    text-decoration: none;
    margin-bottom: 0;
}

.footerInfo a:hover {
    text-shadow: 1px 3px 7px rgba(255, 255, 255, 0.777);
    transition: text-shadow .45s;
}

.icon {
    margin: 0 5px;
    height: 35px;
    width: 23px;
}

/***** OTHER *****/

@media only screen and (min-width: 750px) {

    header button {
        font-size: 30px;
    }

    .footerInfo {
        font-size: 20px;
    }

    .pageIntro {
        font-size: 19px;
    }
    
}




               