/* Structure */

body {
	background-color: #fff;
	width: 100%;
	height: 100%;
}

.wrapper {
  display: block;
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.v-menu {
    width: 200px;
    position: fixed;
    top: 60px;
    left: 40px;
}

.v-menu a {
    display: block;
    width: auto;
}

.footer {
    position: fixed;
    left: 40px;
    bottom: 80px;
    display:inline;
}

.socials {
    position: fixed;
    display: inline;
}

#insta a {
  background-image:url(/img/ig-colour.png);
  display:block;
  width: 20px;
  height: 20px;
  background-size: contain; 
  background-repeat:no-repeat;
  padding: 5px;
  border: none;
}

#insta a:hover {
    border: none;
    opacity: 0.5;
    background-color: #fff;
}

#linked a {
    background-image:url(/img/linked-icon.png);
    display:block;
    width: 20px;
    height: 20px;
    background-size: contain; 
    background-repeat:no-repeat;
    padding: 5px;
    border: none;
  }
  
  #linked a:hover {
    border: none;
    opacity: 0.5;
  }

#content {
	position: absolute;
	left: 300px;
	top: 60px;
    width: 80%;
    margin-bottom: 60px;
}

#content img {
    max-width: 100%;
}

#contentBody {
    width: 85%;
}

#column {
    Width: 45%;
}

.journal {
    width:45%;
    max-width:500px;
    word-wrap: break-word;
    float:left;
    margin:0px 24px 24px 0px;
}

.journal a {
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, .1);
    display: block;
    padding: 0px 0px 0px 0px;
    font-weight: 400;
    filter: grayscale(0);
    transition: filter 1s ease-in-out, border 0s;
    margin-bottom: 0px;
}

.journal a:hover, a:focus{
	color: #000;
    background-color: #fff;
    border: 1px solid #000;
    text-decoration: underline;
    filter: grayscale(100%);
}

.thumbnail img {
    object-fit:cover;
    width:100%;
    height:300px;
    border-radius: 4px 4px 0px 0px;
}
.desc {
    padding: 16px;
}


/* Chonks */

.chunk {
    padding: 20px 0px 20px 0px;
    width: 100%;
    float: left;
}

.smallChunk {
    padding: 4px 0px 4px 0px;
    width: 100%;
    float: left;
}

.medChunk {
    padding: 8px 0px 8px 0px;
    width: 100%;
    float: left;
}

.largeChunk {
    padding: 40px 0px 40px 0px;
    width: 100%;
    float: left;
}

.halfChonk {
    display: flex;
    align-items: top;
    width: 100%;
    float: left;
}

.halfChonk > div {
    flex: 1;
    padding: 20px 24px 20px 0px;
}

.date {
    max-width: 150px;
}

/* Responsive Rules */

/* Tablet */

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

    .v-menu {
        display: initial;
        left: 10%;
        top: 60px;
        position: absolute;
    }

    #content {
        position: relative;
        top: 260px;
        left: 10%;
    }
    
    #column {
        width: 100%;
    }
    
    .thumbnail img {
        width:100%;
    }
    
    .halfChonk {
        display: initial;
        width: 100%;
    }

    .halfChonk > div {
        padding: 20px 0px 20px 0px;
    }
    
    .footer {
        position: fixed;
        background-color: white;
        padding: 20px 0px 10px 0px;
        height: 8%;
        left: 10%;
        bottom: 0px;        
    }

    .journal {
        width:100%;
    }

}

/* Mobile */

@media only screen and (max-width: 400px) {
    
    .v-menu {
        display: initial;
        left: 10%;
        top: 30px;
        position: absolute;
    }

    #content {
        position: relative;
        top: 250px;
        left: 10%;
    }
    
    #column {
        width: 100%;
    }
    
    .journal {
        width:100%;
    }

    .halfChonk {
        display: initial;
        width: 100%;
    }

    .halfChonk > div {
        padding: 20px 0px 20px 0px;
    }
    
    .footer {
        position: fixed;
        background-color: white;
        padding: 20px 0px 10px 0px;
        height: 8%;
        left: 10%;
        bottom: 0px;        
    }
    
    .date {
        margin-bottom: -20px;
    }
    
}
