.project {
    border: 2px solid var(--cBorder);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);

    overflow: hidden;
    margin: 20px auto;
    border-radius: 20px;
    max-width: 1120px !important;
    background-color: #f8f8f6;    
}
.project img {
    border-radius: 8px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);

    float: left;
	width: 400px;
	max-height: 400px;
	margin-right: 40px;
	object-fit: cover;
}


.project h1 {
	display: flow-root;
}
.project p {
	margin-top: 0px;
}



#btn-outer {
    margin-top: 20px;
    padding: 5px 0;
}
#btn-inner {
    display: inline-block;
    border-radius: 10px;
    border: 2px solid var(--cBorder);
    width: 30%;
    min-width: 300px;
    text-align: center;
    font-size: 1.2em;
    color: #3a4b35;
    font-weight: bold;
    background-color: var(--cLightBackground);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}
#btn-inner a {
    display: block;
    padding: 8px 10px;
    font-style: oblique;
}
#btn-inner:hover {
    background-color: #d9d9d2;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);
}



html {
    scroll-behavior: smooth;
}


@media screen and (max-width: 1300px) {
	.project {
        margin: 20px 10px;
    }
}