*{
    margin: 0; padding: 0; box-sizing: border-box;
}
body{
    font-family: Georgia, 'Times New Roman', Times, serif;
    /* background-color: #F2E8D5; */
    /* background-color: #EDEAE0; */
    background-color: #F4EDE4;
    width: 60%; margin: auto;
}

header{
    /* border: 1px solid black; */
    width: 100%;
    margin: auto;
    margin-top: 25px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header h1{
    /* border: 1px solid black; */
    width: 100%;
    font-size: 60px;
    text-align: left;
}
#aboutAndLinks{
    /* border: 1px solid black; */
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}
#aboutAndLinks ul{
    /* border: 1px solid black; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
#aboutAndLinks ul li{
    /* border: 1px solid black; */
    list-style: none;
}
#aboutAndLinks ul li a{
    color: black;
    /* text-decoration: none; */
}
header hr {
    border: none;
    margin-top: 10px;
    height: 1px;
    background-color: #6f62df;
    width: 100%;
}


h2{
    /* border: 1px solid black; */
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 25px;
}


#projects{
    /* border: 1px solid black; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#projects .project{
    /* border: 1px solid black; */
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
}
#projects .project .projectIcon{
    /* border: 1px solid black; */
    border-radius: 100px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    width: 110px;
    font-size: 70px;
}
#projects .project .nameAndAbout a{
    color: black;
    text-decoration: none;
}
#projects .project .nameAndAbout h3{
    /* border: 1px solid black; */
    margin-bottom: 7px;
    font-size: 35px;
    text-align: left;
}
#projects .project .nameAndAbout p{
    /* border: 1px solid black; */
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
}


footer hr{
    display: none;
}