/*UNIVERSAL STYLES*/

body {
  margin: 0;
  padding: 0;
  background-color: antiquewhite;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: black;
}

p {
  line-height: 190%;
}

a {
  text-decoration: none;
  color: wheat;
}

/*STYLING THE MENU*/

#menu {
  background-color: cadetblue;
  height: 100px;
}

#menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}

#menu li {
  display: inline-block;
}

#menu a {
  letter-spacing: 2px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 100px;
  color: black;

  padding: 0 40px;
  border: none;
  display: block;
}

#menu a:hover {
  background-color: blanchedalmond;
}

/*STYLING THE HEADER*/
#header {
  padding: 60px 0 40px 0;
  background-color: teal;
  text-align: center;
}

#header h1 {
  color: whitesmoke;
  letter-spacing: 0.1em;
  font-size: 44px;
}

#header p {
  letter-spacing: 0.1em;
  color: whitesmoke;
}
/*STYLING THE BANNER*/
#banner {
  height: 300px;
}

#banner img {
  width: 100%;
  height: 300px;
}
/*STYLING PAGE*/
#page {
  min-height: 400px;
  padding: 20px;
}

#page h2 {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bolder;
  color: chartreuse;
}

/*STYLING CONTENT*/
#content {
  float: left;
  width: 70%;
}
/*STYLING SIDEBAR*/
#sidebar {
  float: right;
  width: 25%;
}
/*STYLING THE LISTS*/
ul.styled {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul.styled li {
  border-top: 1px solid ghostwhite;
  padding: 14px 0;
}

ul.styled li a {
  color: black;
}
/*STYLING THE FOOTER*/
#footer {
  width: 100%;
  height: 340px;
  background-color: aliceblue;
  padding-top: 25px;
  padding-left: 22px;
  clear: both;
}

#footer h2 {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

#box-1 {
  float: left;
  width: 30%;
  padding-right: 30px;
}

#box-2 {
  float: left;
  width: 30%;
  padding-right: 30px;
}

#box-3 {
  float: right;
  width: 30%;
  padding-left: 30px;
}
/*STYLING THE COPYRIGHT*/

#copyright {
  width: 100%;
  height: 130px;
  text-align: center;
  background-color: tomato;
  padding-top: 55px;
  clear: both;
}

#copyright p {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/*STYLING FORM*/
input[type="text"] {
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
}

input[type="email"] {
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: none;
}

textarea {
  width: 50%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
}

input[type="submit"] {
  width: 50%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
/*STYLING GALLERY*/
#gallery img {
  width: 120px;
  margin: 12px;
  -moz-transition: -moz-transform 0.5s ease-in;
  -webkit-transition: -webkit-transform 0.5s ease-in;
  -o-transition: -o-transform 0.5s ease-in;
}

#gallery img:hover {
  -moz-transform: scale(3);
  -webkit-transform: scale(3);
  -o-transform: scale(3);
}
