@charset "utf-8";
/* CSS Document */

body{
	background-color: whitesmoke;
	margin: 0;
	pandding:0;
}

/* navigation */
ul{
	list-style: none;
}
a{
	text-decoration: none;
}

nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	background-color: #FFFFFF;
	box-shadow: 2px 2px 12px;
	padding: 0 5%;
}
nav ul{
	display: flex;
}
nav ul li a{
	margin: 30px;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #000000;
	font-size:15px;
	font-weight: 700;
}
.logo{
	font-family: baumans;
	color: #000000;
	font-size: 22px;
	font-weight:bold;
	letter-spacing:5px;
}
.active{
	font-weight: bold;
	color: #2d2a2a;
}

/* main */
main {
  min-height: 800px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)),url("img/background3.jpg");
  background-repeat:no-repeat;
  background-size: cover;	
  padding: 10px;
}
.heading{
	font-family: calibri;
	font-size: 38px;
	text-align: center;
	font-weight: 500;
	padding: 10px 20px;
	letter-spacing: 2px;
	color:white;
}
.heading h1{
	font-family: calibri;
	font-size: 38px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 2px;
	color: #17d1ac;
}
.heading p{
    font-size: 20px;
}

/* info */
* {
  box-sizing: border-box;
}
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

img{
    margin-top: 0px;
    margin-left: 40px;

}
/* submit */
input[type=submit] {
  background-color: black;
  color:white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
input[type=submit]:hover {
	background-color: #17d1ac;
	color: black;
	transition: all ease 0.3s;
}


/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 50%;
  margin-top: 10px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* footer */
footer {
    min-height: 10px;
    background-color: #FFFFFF;
	justify-content: space-between;
	display: flex;
	padding: 0 2%;
}
footer p{
	font-family: calibri;
	font-size: 18px;
	color:#191919;
	line-height:30px;
}
.social-icons a{
	width:40px;
	height:40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color:#e6e3e3;
	margin:20px 10px;
	border-radius:50%;
}
.social-icons{
	display: flex;
	float:right;
}
.social-icons i,.social i{
	color:#000000;
}
.social-icons a:hover{
	background-color:#000000;
	box-shadow:2px 2px 12px rgba(0,0,0,0.2);
	transition:all ease 0.5s;
}
.social-icons a:hover i,
.social a:hover i{
	color:#FFFFFF;
	transition:all ease 0.5s;
}

/* Responsive layout - when the screen is 600px wide */
@media screen and (max-width: 600px) {
	.column, input[type=submit] {
    width: 100%;
    margin-top: 0;
	}
	img{
    margin : 0px 40px 0px 40px;
    align-items: center;
    padding-right: 65px;
    padding-left: 0px;
	}
	footer{
    flex-direction: column;
    text-align: center;
	align-items: center
	}
}