{
    box-sizing: border-box;
}

/* Set height of body and the document to 100% */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Georgia;
}

/* Style tab links */
.tablink {
    background-color: #494444;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    width: 15%;
}

.tablink:hover {
    background-color: #3E3637;
}

/* Tab content */
.tabcontent {
    color: white;
    display: none;
    padding: 100px 20px;
    height: 100%;
}

#Home {background-color: #688E8A;}
#About {background-color: #688E8A;}
#Portfolio {background-color: #688E8A;}
#Shop {background-color: #688E8A;}
#Contact {background-color: #688E8A;}

/* Body */
body {
    font-family: Georgia, Helvetica, sans-serif;
    margin: 0;
    text-align: justify;
    padding: 50px;
    background-color: #B3AAB8;
}

img {
    width: 20%;
    height: auto;
    float: left;
}
/* Header */
.header {
    padding: 5px;
    text-align: center;
    font-family: Georgia;
    background: #2B373E;
    color: white;
}

.header h1 {
    font-size: 40px;
}
.header h2 {
    font-size: 20px;
}
.header h3 {
    font-size: 20px;
}
.header h4 {
    font-size: 20px;
}
.header h5 {
    font-size: 20px;
}
/* Top navigation bar */
.navbar {
    overflow: hidden;
    background-color: #B3AAB8;
    margin-left: 50;
}
/* Navigation bar links */
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    margin-left: 10;
}
/* Color on hover */
.navbar a:hover {
    background-color: #2B373E;
    color: #262C1F;
}
/* Image containers  */
.column {
  float: left;
  width: 20%;
  padding: 5px;
}
/* Clear floats */
.row::after {
  content: "";
  clear: both;
  display: table;
}

/* Responsive layout */
@media screen and (max-width: 700px) {
    .row {   
        flex-direction: column;
    }
}
/* Responsive layout */
@media screen and (max-width: 400px) {
    .navbar a {
        float: none;
        width: 100%;
    }
}
/* Footer */
.footer {
    background-color: #2B373E;
    text-align: center;
    font-family: Georgia;
    padding: 10px;
    color: white;
}
}