

/* ----------------------------------------  Styling common for all three pages ---------------------------------------- */
body {
	font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
	color:#777;
    line-height:1.5em;
    position: relative;
    margin: 0px;
    padding: 1px;
    background-image: url("../images/backgroundimage.png")
}


h1, h2, h3, p {
	margin-bottom:2%;
}

h2 {
	color:#4aaaa5;
	font-size:36px;
	font-weight:bold;
    border-bottom: 2px solid #ddd;
    padding-bottom: 2%;

}
h3 {
	color:black;
	font-size:18px;
	font-weight:bold;

}

/* Bootstrap classes */
.navbar-brand {
	font-size: 35px;
	color:#fff;
    font-weight:bold;
}
.navbar navbar-default
{    
    font-size: 18px;
    position: absolute;
    top: 0px;
    background-color: white;
    width: 100%;
    border-bottom: 3px solid rgb(179, 174, 174);

}

.navbar-default .navbar-brand
{
    color: #fff;
}

.container-fluid
{
    left:0px;
    right: 0px;
    margin: auto;
    max-width: 960px;
    overflow: auto;
}

.navbar-header {
    float:left;
	background: #4aaaa5;
	border-bottom:#ccc;
    padding:14px;
    margin: 0px;
}

.navbar-nav {
    float: right; 

}

/* Bootstrap classes end */


nav li {
    font-size: 18px;
    padding: 15px;
    display: inline-block;
}
nav li a{
    color: #777777;
    text-decoration: none;
}


#content{
	width:960px;
	margin:auto;
    text-align: center;
    margin-top: 60px;
    padding: 25px;
}


section {
	padding:2%;
	clear:both;
	overflow: auto;
	text-align: left;
	background:#fff;
    border:1px solid #ccc;
}

footer {
	padding:10px;
    text-align: center;
	background:#666;
	color:#fff;
	position: fixed;
	left: 0;
	bottom: 0px;
    width: 100%;
    border-top: 10px solid #4aaaa5;
}

/*  ---------------------------------------- Index.html Page  ---------------------------------------- */


.img-responsive
{
    margin-right: 7px;

    float:left;
}

/* ----------------------------------------  Portfolio.html Page ----------------------------------------  */
#portfolio  {
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    padding: 10px;

}
#item1 {
    background-image: url("../images/hangman.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    bottom:2px;
    left:10%;

   
}
#item2 {
    background-image: url("../images/crystal.png");
    background-size: 100%;
    background-size: cover;
    bottom:2px;
    left:10%; 

}

.portfolioitem{
width: 30%;
height: 250px;
display: flex;
justify-content: center;
align-items: center;
position:relative;
}

.portfolioitem a{
    background:#4aaaa5;
    color:#fff;
    padding: 2px;
	text-align:center;
	position: absolute;
	width:100%;
	bottom:10%;
    left:0%;
    font-size: 20px;
}

/* ---------------------------------------- Content.html Page ---------------------------------------- */
#message
{
    width: 100%;
}


input[type=text] {
    width: 100%;
    padding: 8px 10px;
    margin: 8px 0;
    box-sizing: border-box;
}

input[type=submit] {
	background:#4aaaa5;
    padding: 12px 20px;
    margin: 8px 0;
	color:#fff;
}

input[type=submit]:hover {
    background-color: #163130;
}

