/* Made by Mark De Guzman
LinkedIn: https://www.linkedin.com/in/mark-d-013447206/
Github: https://github.com/mark-p7 
JS Library used: https://github.com/Mobius1/Pageable */
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
@import url("https://fonts.googleapis.com/css?family=Inconsolata:400,700");
body {
  margin: 0;
  font-family: "Montserrat";
  overflow: hidden;
  background-color: #2a2a2a;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row;
  color: #fff;
  position: relative;
}
#page-1 .text, #page-1-clone .text {
  background-color: #121212;
}
#page-2 .text {
  background-color: #181818;
}
#page-3 .text {
  background-color: #1E1E1E;
}
#page-4 .text {
  background-color: #242424;
}
#page-5 .text {
  background-color: #2A2A2A;
}
#page-6 .text {
  background-color: #303030;
}
#page-7 .text {
  background-color: #363636;
}
#page-8 .text {
  background-color: #454545;
}

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 10px, 0);
            transform: translate3d(-50%, 10px, 0);
    opacity: 0;
  }
}

@keyframes scroll {
  from {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 10px, 0);
            transform: translate3d(-50%, 10px, 0);
    opacity: 0;
  }
}
.anchors {
  position: fixed;
  top: 25px;
  right: 50px;
  z-index: 100;
}
.anchors ul {
  margin: 0;
  padding: 0;
}
.anchors ul li {
  float: left;
  list-style: none;
}
.anchors ul li a {
  padding: 12px;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.anchors ul li a::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.anchors ul li a:hover:after { 
  width: 100%; 
  left: 0; 
}
@media screen and (max-height: 300px) {
	ul {
		margin-top: 40px;
	}
}

/* .anchors ul li a.active::after {
  position: absolute;
  bottom: 0px;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
} */

.text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.page-1-div h1 {
  font-size: 100px;
  margin-bottom: 0px;
}

.page-1-div p {
  font-size: 20px;
  text-align: left;
  text-decoration: bold;
}

.project-page-div h1 {
  font-size: 40px;
  margin: 0px 0px 70px 0px;
}

.project-page-container {
  display: grid;
  grid-template-columns: 400px 700px;
  gap: 50px;
  padding: 15px;
}
@media only screen and (max-width: 600px) {
  .project-page-container {
    grid-template-columns: none;
    grid-template-rows: 100vh 40vh;
  }
}
.project-page-container img {
  width: 100%;
  display: block;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transition: all 100ms ease-out;
  /* height: 40vh; */
}
@media screen and (max-width: 600px) {
  .project-page-container img {
    height: 100vh;
  }
}
.project-page-container img:hover {
  transform: scale(1.04);
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.page-7-container {
  width: 70%;
  text-align: center;
  padding: 15px;
  border: 3px solid white;
  border-radius: 5px;
}

.page-8-div h1 {
  font-size: 50px;
  font-weight: bold;
  margin: 0px 0px 50px 0px;
}

.page-8-div a {
  font-size: 30px;
  font-weight: bold;
  margin: 20px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 15px 20px;
  position: relative;
}

.page-8-div a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.page-8-div a:hover:after { 
  width: 100%; 
  left: 0; 
}
@media screen and (max-height: 300px) {
	ul {
		margin-top: 40px;
	}
}
