* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #260F01;
    margin: 0 auto;
}
svg{
    
    float: right;
}
header {

   
    position: relative;
    background: url('images/photo-header.jpg');
    background-size: cover;
    background-position: center;
    padding: 10%;
}
.hero{
    position: relative;
}


.header-content{
    padding: 1rem;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.66);
}

.header-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #484646;
}

.header-content p {
    color: #666;
    font-size: 1.1em;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #732C02;
}

header h2 {
    font-size: 1.2em;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.project-card {
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
}

.project-content {
    background-color: #fff;
    border: 1px solid #BF8F65;
    padding: 20px;
}

.image-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}



.project-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #732C02;
}

.footer {
    clear: both;
    text-align: center;
    padding: 30px 20px;
    background-color: #D9CDBF;
    margin-top: 30px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #732C02;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #BF8F65;
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.9em;
    color: #8C654F;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #732C02;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
}

.back-to-top:hover {
    background-color: #BF8F65;
}
@media screen and (min-width: 750px) {
    .projects {
        width: 80%;
        max-width: 1400px;
        margin: 40px auto;
    }

    .project-card {
        padding: 20px;
        position: relative;
    }

    .project-content {
        overflow: hidden;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    }
    

    .image-wrapper {
        float: left;
        width: 25%;
    }

    .project-content p,h3  {
        float: right;
        width: 50%;
        padding: 20px;
    }
     .project-content p,h3  {
        float: right;
        width: 50%;
        padding: 20px;
    }
     .project-content h4  {
        float: right;
        width: 50%;
        padding: 20px;
        font-weight: 100;
        color: #BF8F65;
    }

    .image-wrapper img {
        filter: sepia(50%);
       
    }

    .image-wrapper:hover img {
        filter: sepia(0%);
    }

    

  

}

