/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

:root {
    --primary-color: #000000;
    --secondary-color : #ffffff;   
    --secondary-color-low-opacaty : #ffffffb7;  
    --blue-color: #0b25c6;
    --orange-color: #ff7900;
    --light-organge-color: #ff8e29;
    --grey-color:  #f1f1f1;
    --light-purpel-color: #9aa8ff;
}

.project-container {
    bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1200px;
    position: relative;
    width: 100%;
}

.project-call-to-action{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: var(--light-organge-color);
    border-radius: 50px;
    -webkit-box-shadow: 0 5px 12px 0px rgb(0 0 0 / 20%), 0 0 0 1px #ff7800;
            box-shadow: 0 5px 12px 0px rgb(0 0 0 / 20%), 0 0 0 1px #ff7800;
    color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 120px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 60px;
    width: 100%;
}

.project-titel {
    font-size: 2rem;
    font-weight: 700;
    width: 200px;
}
.project-desciption{
    max-width: 310px;
    text-align: center;
}
.project-btn{
    background-color: var(--orange-color);
    border-radius: 30px;
    border: solid 2px var(--orange-color);
    -webkit-box-shadow: inset -1px -3px 6px 0px rgb(0 0 0 / 20%), 0 0 0 0px var(--orange-color);
            box-shadow: inset -1px -3px 6px 0px rgb(0 0 0 / 20%), 0 0 0 0px var(--orange-color);
    color: var(--secondary-color);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
    text-decoration: none;
    width: 200px;
}

.project-btn:hover{
    background-color:#a24c00;
    color: var(--orange-color);
}

.footer-container{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--orange-color);
    color: var(--secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 0px 50px 50px;
    width: 100%;
}

.copyright{
    font-family: libre-baskerville;
    font-size: 0.8rem;
    font-weight: 300;
    margin: 50px 0 0 0;
    text-align: center;
}

.icon-contianer {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.icon {
    margin: 0 10px 0 10px;
}
  
.icon:hover {
    opacity: 0.7;
} 


@media screen and (max-width: 850px) {

    .project-call-to-action{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 10px;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .project-titel{
        margin: 0;
    }

    .project-btn{
        font-size: 1rem;
        font-weight: 700;
    }

    .project-container{
        max-width: 100%;
    }

    .footer-container{
        padding: 0px 10px 50px;
    }
}