* {
    margin: 0;
}
body {
    font-size: 17px;
    font-family: tahoma, sans-serif;
}

li { line-height: 1.5em; }
ul { list-style-type:square; }

h1, h2 {
    color: #6B705C;
    line-height: 1.7em;
}

a:link {
    color: hsl(13, 85%, 77%);
}
a:visited { color: #D0A68A; }
a:hover { color: #6B705C; }

header {
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    align-items: center;
    gap: 40px;
    padding: 60px;
    background-color: #FFDCC2;
    justify-content: center;
}

.myinfo {
    text-align: center;
    width: 50%;
    border: 4px solid #6B705C;
    padding: 50px;
}
header img {
    border-radius: 5px;
}

main {
    padding: 60px 60px;
    display: flex;
    gap: 50px;
    justify-content: space-around;
    flex-direction: row;
}

.projects {
    flex: auto;
    flex-basis: 50%;
  
}
.reviews {
    flex: 50%;
}

footer {
    padding: 40px;
    background-color: #6B705C;
    color: #fff;
}