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

:root{
    --link-color: rgba(255,255,255,0.75);
    --primary-color: #004a99;
    --secondary-color: #ffd700;
    --tertiary-color: #e6e6e6;
    --large-img: 900px;
    --medium-img: 600px;
    --small-img: 300px;
    --desktop-version: 1571px;
}

#bg-img{
    background-image: url("../img/headerImg.PNG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 50%;
    height: 80vh;
}

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

#header-container{
    max-width: 1800px;
    width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: var(--tertiary-color);
    text-align: center;
    padding: 20px;
    background-color: rgba(8, 47, 105, 0.5);
}

#header-text{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
}


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

#header-title{
    text-align: center;
    flex-basis: 100%;
}

#about-us{
    padding: 50px;
    background-color: var(--tertiary-color);
}

#about-us button{
    margin: 15px 0;
}

#about-img img{
    width: 100%;
    border-radius: 8px;
}

#about-text h2{
    color: var(--primary-color);
    font-size: 36px;
}

#about-text h3{
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 10px;
}

#about-text p{
    font-size: 18px;
    color: #333;
    margin-top: 20px;
    line-height: 1.6;
}

#services-provided .header-footer{
    border: 2px solid var(--primary-color);
    padding: 10px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

#services-provided .collapse{
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px;
}

#services-provided h2{
    text-align: center;
    padding: 20px;
}

/* For small screens */
@media (max-width: 570px) {
    #header-title{
        flex-basis: auto;
    }

    #bg-img{
        background-position-x: -250px;
    }
    
}

@media (min-width: 1571px){
    #header-container{
        background-color: rgba(8, 47, 105, 0);
    }
}

.button-container button{
    padding: 10px;
    margin: 10px;
    font-size: 30px;
}

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: var(--tertiary-color);
    color: var(--primary-color);
    margin: 30px 0;
    padding: 20px;
    font-size: 12px;
    margin: 0 auto;
}

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

.fas{
    padding: 5px;
}

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