* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

img {
    width: 100%;
    height: auto;
}

/* Style the header */
.header {
  padding: 80px;
  text-align: center;
  background: #333;
  background-image: url("images/coffee.jpg");
  color: black;
}

/* Increase the font size of the h1 element */
.header h1 {
  font-size: 40px;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: #333;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  flex: 70%;
  background-color: white;
  padding: 20px;
}

.LL_Col {
    float:left;
    width: 20.33%;
    padding: 5px;
}

.LL_Row:after {
    content: "";
    clear: both;
    display: table;
}

.about_me {
    height: auto;
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 10px;
    overflow: none;
}

.projects {
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 30px;
}

.footer {
    padding: 5px;
    text-align: center;
    background: #ddd;
    position:fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 4px;
}






















