* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
	font-family: 'Open Sans', sans-serif;
}

.header {
    text-align: center;
    padding: 32px;
}
	
#navbar {
  overflow: hidden;
  background-color: white;
}
	
.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

.rowabout {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 20px;
	margin-top: 30px;
}

/* Create four equal columns that sits next to each other */
.column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
}



/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}
		
/* Menu icon styles */
.menu {
	margin-top: 30px;
	cursor: pointer;
	width: 45px;	
	margin-left: 40px;
}
	
.icon {
    width: 35px;
    height: 5px;
    background-image: linear-gradient(to right, #ea1b25 , #7c015c);
    margin: 6px;
}
	
/* The side navigation menu */
.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-image: linear-gradient(#ea1b25 , #7c015c); /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #f1f1f1;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #818181;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}
	
/* Scroll top button styles */
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: black; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}

#myBtn:hover {
	color: white;
    background-image: linear-gradient(#ea1b25 , #7c015c); /* Add a dark-grey background on hover */
}
	
/* Filter Elements */
#myBtnContainer{
	text-align: center;
}	
	
.filterDiv {
    float: left;
    background-color: #2196F3;
    color: #ffffff;
    width: 100px;
    line-height: 100px;
    text-align: center;
    display: none; /* Hidden by default */
}

/* The "show" class is added to the filtered elements */
.show {
    display: block;
}

/* Style the buttons */
.btn {
  font-family: 'Lato', sans-serif;
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
}

/* Add a light grey background on mouse-over */
.btn:hover {
  background-color: black;
  color: white;
}

/* Add a dark background to the active button */
.btn.active {
  text-transform: uppercase;
  background-color: white;
  color: black;
}
	
.about {
    max-width: 900px;
    margin: auto;
	font-family: 'Open Sans', sans-serif;
}

/* SKILL BARS */
/* Make sure that padding behaves as expected */
* {box-sizing:border-box}

/* Container for skill bars */
.containerskills {
    width: 100%; /* Full width */
    background-color: #ddd; /* Grey background */
	margin-top: -10px;
	margin-bottom: 10px;
}

.skills {
    text-align: right; /* Right-align text */
    padding: 10px; /* Add some padding */
    color: white; /* White text color */
}

.psd {width: 85%; background-color: #000;} /* Photoshop */
.ai {width: 80%; background-color: #000;} /* Illustrator */
.indd {width: 65%; background-color: #000;} /* Indesign */
.html {width: 75%; background-color: #000;} /* Dreamweaver */

.footer {
    width: 100%;
    background-color: white;
    color: black;
    text-align: right;
	padding-right: 100px;
	margin-top: 40px;
	margin-bottom: 0px;
}

.footer a{
    color: black;
}

.footerlink {
    font-size: 24px;
	padding-left: 5px;
	padding-bottom: 20px;
	padding-top: 10px;
}

.contact {
    width: 100%;
    color: black;
    text-align: center;
	padding-right: 70px;
	margin-top: 40px;
	margin-bottom: 0px;
}

.contact a{
    color: black;
}

.contactlink {
    font-size: 50px;
	padding-left: 50px;
	padding-bottom: 20px;
	padding-top: 10px;
}

.menulink {
    font-size: 14px;
	padding-left: 5px;
	padding-top: 10px;
}

.social {
	width: 100%; 
	margin-left: 25px;
	margin-top: 30px;
}

.social a {
    font-size: 14px;
	padding-left: 5px;
	float: left;
}

#bgabout {
  background-image: url(img/about.jpg); 
  background-position: right top; 
  background-repeat: no-repeat;
}