/*------ Global Settings --------*/
html {
    font-family: 'Oxygen', sans-serif;
}

/*------ Nav Bar ------*/
nav {
    border-bottom: 1px solid lightslategray;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
}
  
nav li {
    float: right;
}
  
nav li a {
   display: block;
   color: black;
   text-align: center;
   margin: 14px 16px;
   text-decoration: none;
}
  
/* Change the link color to #111 (black) on hover */
nav li a:hover {
    background-color: grey;
}

nav img {
    width: 24px;
}

/*------- Body ---------------*/
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px;;
    display: flex;
    flex-direction: column;
    
}

/*------ Splash Logo ---------*/
.logo-splash-img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    padding-bottom: 50px;
}

/*---------- Blog Post Cards ----------*/
.blogcard-post {
    background: #fff;
    max-width: 800px;
    margin: 5% auto;
    border-radius: 10px;
    box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.3);
    display: inline;
    position: relative;
 }
  
.blogcard-category {
    border: none;
    outline: none;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 16px;
    width: 150px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.blogcard-category p {
    margin: 0;
}

.post-type-ux {
    background: #ffad95;
}

.post-type-code {
    background: #5e8ee1;
}

.post-type-society {
    background: #68fd6f;
    color: #333;
}

.blogcard-img img{
   width: 100%;
   border-radius: 5px;
}

.blogcard-copy {
    padding: 15px 15px 80px 15px;
}
.blogcard-button {
    border: none;
    outline: none;
    background: #333;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    box-shadow: 1px 5px 1rem #333;
    text-decoration: none;
    float: right;
}

.blogcard-button:hover {
    box-shadow: 0px 1px 1rem rgba(0, 0, 0, 0.3);
}

.blogcard-post:hover {
    box-shadow: 0px 1px 1rem rgba(0, 0, 0, 0.3);
}

/*------ Footer ------*/
footer {
    border-top: 1px solid lightslategray;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
}

footer li {
    float: left;
}

footer li a {
    display: block;
    color: rgb(49, 48, 48);
    text-align: center;
    padding: 6px 8px;
    text-decoration: none;
 }

 /* Change the link color to #111 (black) on hover */
footer li a:hover {
    background-color: #111;
}

footer p {
    font-size: smaller;
}

/*------------ ABOUT --------------*/
.pic-of-me img{
    width:150px;
    border-radius: 150px;
    border: 5px solid #5e8ee1;
}

.about-me h1{
    margin-bottom: 0px;
}

.socials-contact ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
}

.socials-contact li a {
    display: block;
    color: black;
    text-align: center;
    margin: 5px 5px 5px 0px;
    text-decoration: none;
 }

 .socials-contact li a:hover {
    background-color: lightgrey;
}

.socials-contact li {
    float: left;
}

.button-contact{
    border: none;
    outline: none;
    background: #5e8ee1;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    padding: 6px;
}

.button-contact:hover {
    box-shadow: 0px 1px 1rem rgba(94,142,225, 0.6);
}

.open-for-biz {
    background-color: #ffad95;
    padding: 10px;
    margin: 5px 0px;
    border-radius: 10px;
}
