
body{

    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    margin: 0
 
}

#nav-bar {

    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 9%;
    margin-bottom: 40px;


    border-bottom: 1px solid lightgray;
}

#home {

    font-weight: bold;
}

#home:hover {

    color: blue;
}

#links{

    display: flex;
    flex-direction: row;
    justify-content: space-evenly
}

a{

    text-decoration: none;
    margin: 0
}

a[for]{

    transform: translate3d(0px,0px,0px);
    position: relative;
    backface-visibility: hidden;
    transform: rotate(0);
}

a:visited{

    color: black;
}

.link-container {

    display: inline-block;
    width: 25%;
  
}

.link-image{

    width:  80%;
  
}

.link-title {

    text-align: center;
}

.link-title:hover{

    color: blue
}

.link-image-container {

    display: flex;
    justify-content: center;
    padding-top: 10%;
    padding-bottom: 10%;
    border: 5px solid transparent;
  
}

.link-image-container.resume{

    background-color: #e6b8af;
}

.link-image-container.projects{

    background-color: #cfe2f3;
}

.link-image-container.github{

    background-color: #d9ead3;
}
#about-container {

   
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 0 solid gray;
}

#about-heading {

    margin-bottom: 0
}

#about {
    width: 75%;
    margin-right: 90px;
    margin-left: 90px;
    margin-bottom: 20px;
    font-size: 125%
}

#footer{

    border-top: 1px solid lightgray;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
}

#contact-link{

    color: black;
}

#contact-link:hover{

    color: blue;
}

@media only screen and (max-width: 700px){

    #links{

        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .link-container {

        display: inline-block;
        width: 75%;
    }

    #nav-bar {

       padding-left: 0;
       margin-left: 0;
       display: flex;
       justify-content: center;
    }



}