/*General Styling*/
body {
	background: #f5cdc7;
	font-family: "Times New Roman", Times, sans-serif;
    margin: 40px;
}

h1 {
    text-align: center;
    color: #80856e;
}

h1:hover{
    color: #f5cdc7;
    text-decoration: overline underline;
    text-underline-offset: 5px;
}
h2 {
    text-align: left;
    color: #80856e;
}

/*Project Styling*/
h3 {
    text-align: center;
    font-style: italic;
    color: #f5cdc7;
}

.projects{
    display:flex;
    flex-wrap:wrap;
}

.project{
    width: 30%;
    margin: 10px;
    padding: 15px 10px;
    background:#80856e;
    border-radius: 15px;
}

.project img{
    width: 300px;
    height: 300px;
    margin: 10px;
    border: 5px solid #f5cdc7;
    display: block;
    margin: auto;
}

.project img:hover{
    border: 5px solid white;
}

a{
    text-decoration: none;
    color: white;
}

.project a:hover{
    color: #80856e;
}

.project p {
    text-align: center;
    margin: 15px;
    color: #f5cdc7;
}

/* About Section Styling */

.about{
    display:flex;
    flex-wrap:wrap;
    margin-right: 100px;
    margin-left: 100px;
    justify-content: center;
    color: #80856e;
}

.about p {
    width:50%;
    text-align: left;
    margin: 40px;
    line-height: 125%;
     color: #80856e;
}

/* Contact Section Styling */
.contact{
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    color: #80856e;
}

.contact a {
    margin-left: 50px;
    margin-right: 50px;
    color: #80856e;
}

.contact a:hover {
    text-decoration: underline;
}

