body .container-fluid {
  display: flex;
  padding: 2%;
  width: 100%;
  max-width: 1310px;
}

header {
  background-image: url(images/pen.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  margin-bottom: 5%;
  padding-top: 2%;
  border: 1px solid #abc8fc;
  border-radius: 30px;
}

.title img {
  margin-left: 18.5%;
  width: 60%;
  margin-top: 3%;
}

.title img:hover {
  cursor: pointer;
}

.stack img {
  position: absolute;
}

#fade-from {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

#fade-from:hover {
  opacity: 0.0;
}

#fade-to {
  filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.5));
}

.nav-pills a {
  font-family: 'Quicksand', sans-serif;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.5);
}

.nav-pills a:hover {
  color: #adc8fc;
}

.nav>li {
  font-size: 90%;
  color: #000000;
  box-shadow: 0 5px 15px #000000;
  border-radius: 5px;
}

.dropdown-menu img {
  padding-right: 20px;
  width: 50px;
}

div .about {
  background-color: rgba(255, 255, 255, 0.5);
  margin: 20% 10% 5% 10%;
  padding: 2%;
  text-align: center;
  border: 2px solid #adc8fc;
  border-radius: 20px;
  font-family: 'Quicksand', sans-serif;
}

.about a {
  color: #adc8fc;
}

.about a:hover {
  color: #ffffff;
}

/*.about p, h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 10%;
}*/

/*.social {
  display: flex;
  flex-direction: row;
  justify-content: center;
}*/

.social {
  margin-bottom: 2%;
}

.social li {
  list-style-type: none;
}

.social a img {
  width: 50px;
}

div h4 {
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 3em;
  margin-bottom: 5%;
  color: #adc8fc;
  border-bottom: 2px solid black;
  padding: 10px;
}

.projects img {
  width: 100%;
  height: auto;
  border: 1px solid #adc8fc;
  border-radius: 30px;
}

.projects .top {
  position: absolute;
  transition: all .1s ease-in-out;
  transform: scale(1);
}

.project .top img {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.projects:hover a .top {
  transform: scale(0);
}

.games img {
  margin-bottom: 50px;
  margin-top: 20px;
}

/*.projects .top h2 {
  width: 100%;
  text-align: center;
  color: #adc8fc;
}*/

.projects a .bottom img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.projects a+p {
  font-size: .75em;
  text-align: justify;
  box-shadow: 0 5px 15px #000000;
  border-radius: 30px;
  padding: 5%;
  margin: 1% 0 5% 0;
  transition: all 1s ease-in;
  transform: scale(0);
}

.projects a:hover+p {
  transform: scale(1);
}

/*form css*/
form {
  font-family: 'Quicksand', sans-serif;
  padding: 20px;
  text-align: center;
}

input {
  margin: 10px;
}

input[type=submit], input[type=reset] {
  justify-content: center;
}


/*MEDIA QUERIES*/


/*tablet*/

@media (min-width: 768px) and (max-width: 991px) {
  .projects .top {
    display: none;
  }
  .projects a+p {
    transform: scale(1);
  }
}


/*phone*/

@media (max-width: 767px) {
  .projects .top {
    display: none;
  }
  .projects a+p {
    transform: scale(1);
  }
}
