@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: 900px;
    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;
}
.heading h1{
	font-family: calibri;
	font-size: 40px;
	text-align: center;
	font-weight: 700;
	color:#17d1ac;
	text-transform: uppercase;
	letter-spacing: 20px;
}
.heading p{
    font-size: 20px;
    text-align: center;
    max-width: 90%;
    margin-left: 5%;
}

/*img grid*/
img{
    border-width: 10px;
    border-style: solid;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	transition: all 0.6s;
}
img:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: scale(1.05) translateY(-20px);
  z-index: 20;
}
.row {
    display: flex;
    flex-wrap: wrap;
    padding-left: 5%;
    margin: 0px 30px 0px 30px;
    align-items: center
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 23%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


/*button*/
#btn{
    width: 100%;
    display: flex;
    justify-content: center;
}
#btn button{
    color: #FFFFFF;
    font-size: 1rem;
    font-family: calibri;
    width: 150px;
    height: 40px;
    margin-top: 80px;
    margin-bottom: 80px;
    background-color: #1E1E1E;
    border: none;
    outline: none;
    box-shadow: 2px 5px 6px rgba(0,0,0,0.2);
    margin-left: 10px;
    margin-right: 10px;
}
#btn button:hover{
	background-color: #17d1ac;
	color:#000000;
	transition: all ease 0.5s;
	font-weight: bold;
}

/* 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 {
    flex: 50%;
    max-width: 45%;
    margin: 0px 5px 20px 5px;	  
  }
	footer{
    flex-direction: column;
    text-align: center;
	align-items: center
	}
}