*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root{
    --link-color: rgba(255,255,255,0.75);
    --primary-color: black;
    --secondary-color: white;
    --large-img: 900px;
    --medium-img: 600px;
    --small-img: 300px;
    --desktop-version: 1571px;
    --cloudy-grey: #e5e5e5;
}

.navbar{
    background-color: var(--primary-color) !important;
    color: var(--link-color);
}

#header-bg{
    background-image: url("../img/keezykeese1997_luxury_diamonds_on_a_black_background_for_a_head_9679e413-31aa-4351-8fd8-d2d77f83a77c.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 50%;
    filter: contrast(85%) brightness(90%) saturate(50%) sepia(10%);
    height: 80vh;
}

#header-container{
    max-width: 1800px;
    width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: var(--secondary-color);
    text-align: center;
    padding: 20px;
}

#header-text{
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 10px;
    border: #e5e5e5 solid 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 4vw;
}


#header-text h1{
    font-size: clamp(6vw,12vw,4em);
}

#header-title{
    text-align: center;
    flex-basis: 100%;
    background-color: var(--primary-color) !important;
}

.link-pipeline{
    margin: 0 10px;
}

/* For small screens */
@media (max-width: 570px) {
    .link-pipeline{
        display: none;
    }

    #header-title{
        flex-basis: auto;
    }
    
}

@media (min-width: 1571px){
    #header-bg{
        background-attachment: fixed;
    }
}

button:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

button:active{
    box-shadow: none;
}   

#developer
{
    background-color: #333333;
    color: var(--cloudy-grey);
    margin: 30px 0;
    padding: 20px;
    font-size: 12px;
    margin: 0 auto;
}

#nav-content{
    display: flex;
    flex-wrap: wrap;
}

@font-face {
    font-family: PlayfairDisplay;
    src: url("./PlayfairDisplay-Italic-VariableFont_wght.ttf");
}

.social-link img{
    width: 30px;
    height: 30px;
}