body{
    background-color: rgb(214, 214, 214);
}
/* Navigation Bar */
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul :first-child{
    margin-right: auto; 
}

li{
    font-size: larger;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 15px;
    font-weight: lighter;
    padding: 10px;
}

li > a{
    color: black;
    text-decoration: none;
}

li > a:hover{
    color: rgba(238, 163, 2, 1);
    transition: 450ms ease;
}

nav{
    margin-bottom: 7vh;
    padding: 0px 15px 0px 15px;
}

/* Main content */
#main-content{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#about_img{
    width: 500px;
    border-radius: 50%;
}

#content{
    display: flex;
    flex-direction: column;
    width: 500px;
}

#content h1{
    font-family: "Work Sans", sans-serif;
    font-weight: 525;
    font-size: 6em;
    margin-bottom: 0%;
}

#content h3{
    font-family: "Work Sans", sans-serif;
    font-weight: bold;
}

#content p{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: medium;
}
/* buttons */
#buttons{
    display: flex;
    flex-direction: row;
}

#resume-btn{
    background-color: rgba(238, 163, 2, 1);
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    transition: background-color 500ms ease;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 50%;
    height: 125px;
    width: 125px;
    margin-right: 10px;
}
#resume-btn:hover{
    background-color: white;
}

#project-btn{
    background-color: rgba(255, 59, 37, 1);
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    transition: background-color 500ms ease;
    border: 1px solid black;
    border-radius: 50%;
    height: 125px;
    width: 125px;
    margin-right: 10px;
}
#project-btn:hover{
    background-color: white;
    transition: 500ms ease;
}

#contact-btn{
    background-color: rgb(128, 216, 218, 1);
    font-size: large;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    transition: background-color 500ms ease;
    border: 1px solid black;
    border-radius: 50%;
    height: 125px;
    width: 125px;
    margin-right: 10px;
}
#contact-btn:hover{
    background-color: white;
}

hr{
    width: 95%;
}

/* footer */
footer{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 25px 0px 25px 0px;
}

footer > div{
    font-family: "Work Sans", sans-serif;
    font-size: large;
}

footer > div >h3{
    font-size: larger;
    font-weight: light;
    text-decoration: underline;
}

#phone{
    text-decoration: none;
    color: rgb(0, 0, 0);
}

#phone:hover{
    text-decoration: underline;
}

#email-address{
    text-decoration: none;
    color: rgb(0, 0, 0);
}

#email-address:hover{
    text-decoration: underline;
}