/* ---=General Global Stylings=--- */

/* Sets the background of the Parisian buildings, parallax settings */

html {
  background-image: url("../imgs/abbie-bernet-326185.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Lato', sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: #393327;
}

h2 {
  font-family: 'Lobster', cursive;
  font-size: 90px;
  margin-bottom: 20px;
}
h4{
  font-family: 'Lobster', cursive;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}
/* ---=Class & ID Stylings, decending down the page=--- */

.titleImg {
  margin-bottom: -100px;
  text-align: center;
}

#elliot {
  height: 100%;
  width: 100%;
}

#elliotmobile {
  height: 100%;
  width: 100%;
}

#scrollArrow {
  font-size: 30px;
  color: #FFF;
  opacity: .8;
  position: relative;
  bottom: 110px;
}

#scrollArrow a {
  color: #FFF;
  text-decoration: none;
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}

/* BIO */

#bio, .portfolio, .contact {
  background-color: #EDEDED;
  color: #393327;
  padding: 15px 10%;
  height: auto;
}

#bio {
  position: relative;
  padding-bottom: 1px;
}

#bio p {
  line-height: 1.5em;
  text-align: justify;
  margin-bottom: 10px;
}

#profilePic {
  height: 20%;
  width: 20%;
  border-radius: 50%;
  position: relative;
  bottom: -40px;
  right: -80%;
  margin: 0;
  -webkit-box-shadow: 0px 0px 0px 20px rgba(237, 237, 237, 1);
  -moz-box-shadow: 0px 0px 0px 20px rgba(237, 237, 237, 1);
  box-shadow: 0px 0px 0px 20px rgba(237, 237, 237, 1);
}

.arc {
  background-image: url("../imgs/paris.jpg");
}

/* CONTACT */

.contact p {
  line-height: 1.5em;
  margin-bottom: 10px;
}

.contactLeft {
  text-align: left;
  width: 50%;
  display: inline-block;
  margin-bottom: 10px;
}

.contactRight {
  display: inline-block;
  text-align: right;
  width: 40%;
  float: right;
  font-size: 70px;
  text-decoration: none !important;
}

/* FOOTER */

footer {
  background-color: #393327;
  color: #EDEDED;
  padding: 10px;
}

.footerText {
  margin: 0 auto;
  text-align: center;
}

/* ---=Pulsing Scroll Button=--- */

#scrollArrow::before {
  position: absolute;
  top: 7px;
  left: 3px;
  z-index: -1;
  content: '';
  width: 24px;
  height: 24px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .1);
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* .projects{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
} */
.underline{
  text-decoration: underline;
}
.filter-button-group{
  cursor:default;
}
.grid-item {
  width: 28%;
}

.card{
  padding: 10px 10px 30px 10px;
  margin: 8px;
  border-radius: 2px;
  box-shadow: 2px 2px 5px rgba(17, 17, 17, 0.35);
  background-color: #fafafa;
  font-family: 'Special Elite', cursive;
  border-radius: 2px;
}

.card img{
  max-width: 100%;
  max-height: 100%
}

.cardTitle {
  display: block;
  font-weight: 500;
  color: #555;
  font-size: 3vmin;
  opacity: .75;
  text-align: center;
  margin: 10px 0;
}

.subtitle {
  display: block;
  color: #555;
  font-size: 2vmin;
  opacity: .75;
  text-align: center;
  margin: 15px 0 0 0;
  text-decoration: none;
}

/* ---=Media Queries=--- */

@media only screen and (min-width:769px) {
  #elliotmobile {
    display: none;
  }
}

@media only screen and (max-width:768px) {
  #elliot {
    display: none;
  }
  html {
    background-image: url("../imgs/abbie-bernet-326185mobile2.jpg");
    max-height: 1200px;
    height: auto;
  }
}

@media only screen and (max-width:500px) {
  #profilePic {
    bottom: -20px;
  }
}

@media only screen and (max-width:659px) {
  .contactLeft {
    width: 100%;
  }
  .contactRight {
    width: 100%;
    float: none;
    text-align: left;
  }
}

@media only screen and (max-width:1200px) {
  .grid-item {
    width: 42%;
  }
}

@media only screen and (max-width:600px) {
  .grid-item {
    width: 90%;
  }
}
