body {
  background-color: white;
  max-width: 1200px;
  margin: auto;
  font-family: "franklin-gothic-urw";
}

/* header */
header {
  display: flex;
  align-items: center;
  background-color: white;
  max-width: 1200px;
  margin: 0px 0px 20px 0px;
  padding-bottom: 25px;
  font-family: "franklin-gothic-urw";
  justify-content: space-between;
}
#gnav ul {
  display: flex;
  justify-content: right;
  padding: 60px 0px 0px 145px;
}
li {
  list-style:none;
}  
h1.title a {
  display: flex;
  justify-content: left;
  font-size: 25px;
  font-weight: normal;
  color: #c30404;
  padding: 50px 0px 0px;
}
h1.title:hover a {
  color: #111111;
} 
a {
  margin: 0 16px;
  font-size: 13px;
  font-weight: normal;
  color: #999999;
  text-decoration: none; 
}
li.ind a {
  color: #111111;
}
a:hover {
  color: #111111;
}
/* header */

/* contents INDEX */
.container {
  width: 1200px;
  margin: auto;
  font-family: "franklin-gothic-urw";
}
.project-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.project {
  background-color: #ffffff;
  width: 350px;
  padding: 0px 1px 40px;
}
.project h2 {
  font-size: 13px;
  font-weight: normal;
  color: #575757;
  text-align: center;
  margin: 13px 0px 2px;
}
.project img {
  width: 320px;
  text-align: center;
  transition: filter 0.3s ease;
}
.project p {
  font-size: 0.9em;
  padding: 5px;
  text-align: justify;
}
.project img:hover {
  filter: blur(2px);
}
/* contents INDEX */


/* footer */
footer {
  background-color: white;
  max-width: 1200px;
  margin: auto;
  font-family: "franklin-gothic-urw";
}
ul {
  display: flex;
}
li {
  list-style:none;
}
footer {
  background-color: white;
  padding-bottom: 20px;
}  
.footer-nav ul {
  display: flex;
  justify-content: right;
  padding: 10px 0px 0px 50px;
  list-style: none;
}
ul.footer a {
  margin: 0 16px;
  font-size: 10px;
  font-weight: normal;
  color: #999999;
  text-decoration: none; 
}
ul.footer li.ind a {
  color: #111111;
}
ul.footer a:hover {
  color: #111111;
}
h3.fotoglamorous {
  margin: 50px 16px 5px;
  font-size: 13px;
  font-weight: normal;
  color: #c30404;
}
p.copyright {
  margin: 0 16px 50px;
  font-size: 13px;
  font-weight: normal;
  color: #575757;
}
/* footer */

/* TABLET CSS */
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
  .about-container {
    width: 90%;  
  }
  #gnav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 60px 0px 0px 55px;
    width: 20%;
  }
  #gnav li {
    padding: 0.5px;
    margin: 0.5px;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 0px 0px 50px;
    width: 90%;
  }
  .footer-nav li {
    padding: 0.5px;
    margin: 0.5px;
  }
}
/* TABLET CSS */

/* SMART PHONE CSS */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }
  .about-container {
    width: 90%;  
  }
  #gnav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 60px 0px 0px 55px;
    width: 20%;
  }
  #gnav li {
    padding: 0.5px;
    margin: 0.5px;
  }
  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 10px 0px 0px 50px;
    width: 20%;
  }
  .footer-nav li {
    padding: 0.5px;
    margin: 0.5px;
  }
}
/* SMART PHONE CSS */