html{
    font-size: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Barlow', sans-serif;
    letter-spacing: .1em;
}
body{
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
    background-color: #2b2b2b;
    /*background-color: #4adaaf;*/

}
nav ul{
    z-index: 100;
    position: fixed;
    margin: 0px;
    padding: 0px;
    background-color: #1b1b1b;
    list-style-type: none;
    height: 70px;
    width: 100%;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    justify-items: center;
    font-size: 2rem;
}
nav ul li{
    display: flex;
    height: 100%;
    align-items: center;
}
#nav_section_1{
    margin-left: 100px;
    display: flex;
    width: 300px;
    justify-content: space-around;
}
#nav_section_1 li a:hover{
    border: dashed 2px white;
    border-radius: 10px;
}
#nav_section_2{
    display: flex;
    grid-column: 3;
    width: 300px;
    justify-content: space-around;
}

.icon{
    height: 30px;
    width: 30px;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#linkedin{
    background-image:url("../assets/linkedin_icon.png");
}
#github{
    background-image:url("../assets/github_icon.png");
}
#email{
    background-image:url("../assets/gmail_icon.png");
}
a{
    display: flex;
    text-decoration: none;
    /*color: #a0dedc;*/
    color: white;
    margin: 0 auto;
    padding: 6px;
    align-items: center;
    border: dashed 2px transparent;
}
.flex-center{
    display: flex;
    height: 420px;
    width: 100%;
    justify-items: center;
    justify-content: center;
}

#post-box{
    width: 90%;
    height: 100%;
    position: absolute;
    margin-top: 200px;
    margin-left: 5%;
}
.center-line{
    background-color: white;
    width: 3px;
    height: 100%;
    position: absolute;
    top:calc(6em - 2px);
    left:calc(50% - 1.5px);
    border-radius: 2px;
}

.postContainer{
    height: 6em;
    width: 50%;
    margin: 0;
    display: flex;
    flex-direction: row;
    position: relative;
}
.post{
    width:70%;
    height:100%;
    display: flex;
    flex-direction: column;
}
.post a{
    font-size: 2em;
    text-decoration: underline;
    cursor: pointer;
}
.post a:hover{
    color: #8d8d8d;
}
.post a,p{
    margin: 0;
    padding: 0;
    color: white;
}
.leftPad, .rightPad{
    width: 30%;
    height: 100%;
    position: relative;
}
/* Set up left post styles */
.leftPost > .post{
    align-items: flex-end;
}
.leftPost > .leftPad{
    display: none;
}
.rightPad{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cline x1='100' y1='100' x2='0' y2='40' stroke='white' stroke-width='2.5' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
}

/* Set up right post styles */
.rightPost{
    right:-50%;
}
.rightPost > .post{
    align-items: flex-start;
}
.rightPost > .rightPad{
    display: none;
}
.leftPad{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cline x1='0' y1='100' x2='100' y2='40' stroke='white' stroke-width='2.5' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
}

.hidden{
    display: none;
}
.tagBox{
    display: flex;
    flex-direction: row;
}
.tag{
    width: fit-content;
    margin: 0;
    border-radius: 0 0 0 10px;
    padding: 2px;
    background-color: #8d8d8d;
    border: 1px solid black;
    text-align: center;
    cursor: pointer;
}