@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,400;0,800;1,400;1,800&display=swap');
@import url('/font-awesome-4.6.3/css/font-awesome.min.css');
.header {
  position: fixed;
  z-index: 1;
  width: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(white),
    color-stop(95%, white),
    to(#b8b8b8)
  );
  background-image: linear-gradient(to bottom, white 0%, white 95%, #b8b8b8);
  color: #525252;
}

.header .container {
  display: relative;
  margin: 0 auto;
  max-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .container .logo {
  font-weight: 800;
  font-size: 4rem;
  padding: 1rem 2rem;
  -webkit-transition: color 3s;
  transition: color 3s;
}

.header .container .nav-button {
  visibility: hidden;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 2rem;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .container .nav-button-line {
  width: 100%;
  height: 3px;
  background-color: #525252;
}

.header .container .nav-links {
  font-size: 2rem;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.header .container .nav-links li {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  cursor: pointer;
}

.header .container .nav-links li.active {
  display: relative;
  border-bottom: 1px solid #878671;
}

.header .container .nav-links li a {
  padding: 1rem 2rem 0.5rem;
  margin: 0 2.5px;
  text-decoration: none;
  color: #525252;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header .container .nav-links li a:hover {
  color: #80a1bd;
}

@media only screen and (max-width: 950px) {
  .header .container {
    max-width: 100%;
  }
  .header .container .logo {
    font-size: 2rem;
  }
  .header .container .nav-links {
    font-size: 1.75rem;
  }
  .header .container .nav-links li {
    padding: 1rem 1.5rem;
  }
}

@media only screen and (max-width: 850px) {
  .header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header .container .nav-button {
    visibility: visible;
  }
  .header .container .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 0px;
    opacity: 0;
  }
  .header .container .nav-links.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    opacity: 1;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .header .container .nav-links li {
    padding: 1rem 2rem;
    cursor: pointer;
  }
  .header .container .nav-links li.active {
    background-color: #878671;
    color: #e6e6e6;
  }
  .header .container .nav-links li.active a {
    color: #e6e6e6;
  }
  .header .container .nav-links li a {
    text-decoration: none;
    padding: 1rem;
    color: #525252;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .header .container .nav-links li a:hover {
    color: #80a1bd;
  }
}

#landing_page {
  margin: 0 auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
  position: relative;
  max-width: 75%;
}

#landing_page .intro {
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 80vh;
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(241, 241, 241, 0.9)),
      to(rgba(200, 200, 200, 0.9))
    ),
    url('https://images.unsplash.com/photo-1616531770192-6eaea74c2456?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-image: linear-gradient(
      to bottom,
      rgba(241, 241, 241, 0.9),
      rgba(200, 200, 200, 0.9)
    ),
    url('https://images.unsplash.com/photo-1616531770192-6eaea74c2456?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: top;
  -webkit-animation: fadeIn 1s ease;
  animation: fadeIn 1s ease;
}

#landing_page h1 {
  padding: 2rem;
  font-size: 8.5rem;
  -webkit-animation: fadeIn 1s ease 1s;
  animation: fadeIn 1s ease 1s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

#landing_page h2 {
  padding: 2rem;
  font-size: 4.5rem;
  text-align: right;
  -webkit-animation: fadeIn 2s ease 2s;
  animation: fadeIn 2s ease 2s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

#landing_page .look {
  margin: 20rem 2rem;
  text-align: center;
  font-size: 5rem;
  -webkit-animation: fadeIn 1s ease 3s;
  animation: fadeIn 1s ease 3s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

#landing_page .around {
  margin-bottom: 5rem;
  text-align: center;
  font-size: 5rem;
  -webkit-animation: fadeIn 5s ease 4.5s;
  animation: fadeIn 5s ease 4.5s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media only screen and (max-width: 950px) {
  #landing_page {
    max-width: 85%;
  }
  #landing_page h1 {
    font-size: 6.5rem;
  }
  #landing_page h2 {
    font-size: 3rem;
  }
  #landing_page .look {
    margin: 20rem 2rem;
    font-size: 3rem;
  }
  #landing_page .around {
    margin-bottom: 5rem;
    font-size: 3rem;
  }
}

@media only screen and (max-width: 600px) {
  #landing_page {
    max-width: 85%;
  }
  #landing_page h1 {
    font-size: 3rem;
  }
  #landing_page h2 {
    font-size: 2rem;
  }
  #landing_page .look {
    margin: 20rem 1rem;
    font-size: 2rem;
  }
  #landing_page .around {
    margin-bottom: 5rem;
    font-size: 2rem;
  }
}

@media only screen and (max-height: 1000px) {
  #landing_page .look {
    margin: 10rem 2rem;
    text-align: center;
    font-size: 3rem;
  }
  #landing_page .around {
    margin-bottom: 5rem;
    text-align: center;
    font-size: 3rem;
  }
}

@media only screen and (max-height: 625px) {
  #landing_page .look {
    margin: 5rem;
  }
}

.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-animation: pulse 1s ease 5s 2;
  animation: pulse 1s ease 5s 2;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.footer__left {
  width: 125px;
  height: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-image: -webkit-gradient(
    linear,
    right top,
    left bottom,
    from(rgba(0, 0, 0, 0.75)),
    to(rgba(50, 50, 50, 0.3))
  );
  background-image: linear-gradient(
    to bottom left,
    rgba(0, 0, 0, 0.75),
    rgba(50, 50, 50, 0.3)
  );
  font-size: 6rem;
  color: #e6e6e6;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.footer__left:hover {
  background-color: #80a1bd;
}

.footer__left a.github-icon {
  color: #e6e6e6;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media only screen and (max-width: 950px) {
  .footer__left {
    width: 100px;
    height: 100px;
    font-size: 4.75rem;
  }
}

@media only screen and (max-width: 650px) {
  .footer {
    display: none;
  }
}

#about {
  margin: 0 auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
  position: relative;
  max-width: 75%;
  overflow: hidden;
}

#about .intro {
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 80vh;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(241, 241, 241, 0.9)),
      to(rgba(200, 200, 200, 0.9))
    ),
    url('/imgs/IMG_9450.jpg');
  background: linear-gradient(
      to bottom,
      rgba(241, 241, 241, 0.9),
      rgba(200, 200, 200, 0.9)
    ),
    url('/imgs/IMG_9450.jpg');
  background-size: cover;
  background-position: center;
  -webkit-animation: fadeIn 1s ease;
  animation: fadeIn 1s ease;
}

#about h1 {
  padding: 2rem;
  font-size: 5rem;
}

#about h1 .active {
  -webkit-animation: fadeIn 1s ease 1s;
  animation: fadeIn 1s ease 1s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

#about h2 {
  padding: 2rem;
  font-size: 2rem;
  text-align: right;
  -webkit-animation: fadeIn 2s ease 2s;
  animation: fadeIn 2s ease 2s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

#about .look {
  margin: 5rem 5rem 2rem;
  text-align: right;
  font-size: 3rem;
  line-height: 4.5rem;
  -webkit-animation: fadeIn 1s ease 1s;
  animation: fadeIn 1s ease 1s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

#about .around {
  margin: 3rem 5rem;
  text-align: left;
  font-size: 3rem;
  line-height: 4.5rem;
  -webkit-animation: fadeIn 2s ease 2s;
  animation: fadeIn 2s ease 2s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media only screen and (max-width: 950px) {
  #about {
    max-width: 85%;
  }
  #about h1 {
    padding: 2rem;
    font-size: 6.5rem;
  }
  #about h2 {
    font-size: 2rem;
  }
  #about .look {
    margin: 20rem 2rem;
    font-size: 3rem;
  }
  #about .around {
    margin-bottom: 5rem;
    font-size: 3rem;
  }
}

@media only screen and (max-width: 600px) {
  #about {
    max-width: 85%;
  }
  #about h1 {
    font-size: 3rem;
  }
  #about h2 {
    font-size: 2rem;
  }
  #about .look {
    margin: 20rem 1rem;
    font-size: 2rem;
  }
  #about .around {
    margin-bottom: 5rem;
    font-size: 2rem;
  }
}

@media only screen and (max-height: 1000px) {
  #about .look {
    margin: 10rem 2rem;
    text-align: center;
    font-size: 3rem;
  }
  #about .around {
    margin-bottom: 5rem;
    text-align: center;
    font-size: 3rem;
  }
}

@media only screen and (max-height: 625px) {
  #about .look {
    margin: 5rem;
  }
}

#projects {
  margin: 0 auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
  max-width: 75%;
}

#projects .backdrop {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 80vh;
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(241, 241, 241, 0.9)),
      to(rgba(200, 200, 200, 0.9))
    ),
    url('https://images.unsplash.com/photo-1453928582365-b6ad33cbcf64?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1352&q=80');
  background-image: linear-gradient(
      to bottom,
      rgba(241, 241, 241, 0.9),
      rgba(200, 200, 200, 0.9)
    ),
    url('https://images.unsplash.com/photo-1453928582365-b6ad33cbcf64?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1352&q=80');
  background-size: cover;
  background-position: top;
  -webkit-animation: fadeIn 1s ease;
  animation: fadeIn 1s ease;
  overflow-x: hidden;
  overflow-y: scroll;
}

#projects .backdrop h1 {
  padding: 2rem;
  font-size: 5rem;
  -webkit-animation: fadeIn 1s ease 1s;
  animation: fadeIn 1s ease 1s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

#projects .backdrop h2 {
  padding: 2rem;
  font-size: 3rem;
  -webkit-animation: fadeIn 1s ease 1.5s;
  animation: fadeIn 1s ease 1.5s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

#projects .backdrop .project_portion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#projects .backdrop .project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 3rem 1rem;
  width: 45%;
  overflow: hidden;
  border: 5px solid #e6e6e6;
  color: #525252;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  -webkit-animation: fadeIn 1s ease 2s;
  animation: fadeIn 1s ease 2s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  background-color: rgba(241, 241, 241, 0.75);
}

#projects .backdrop .project__imgcontainer {
  position: relative;
  width: 35%;
  overflow: hidden;
}

#projects .backdrop .project__imgcontainer__img {
  width: 110%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#projects .backdrop .project__imgcontainer__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  background-color: rgba(241, 241, 241, 0.75);
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#projects .backdrop .project__imgcontainer__overlay:hover {
  opacity: 1;
}

#projects .backdrop .project__imgcontainer__overlay a {
  color: #525252;
  text-decoration: none;
  padding: 1.5rem;
  font-size: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#projects .backdrop .project__imgcontainer__overlay a .title {
  font-size: 2rem;
  margin-right: 1.5rem;
}

#projects .backdrop .project__details {
  width: 65%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #525252;
}

#projects .backdrop .project__details--title {
  padding: 10px;
  font-size: 3rem;
}

#projects .backdrop .project__details--desc {
  padding: 10px;
  font-size: 1.65rem;
}

#projects .backdrop .project__details--desc p {
  margin: 20px 10px;
}

#projects .backdrop .project__details--img {
  display: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media only screen and (max-width: 950px) {
  #projects {
    max-width: 85%;
  }
  #projects .backdrop {
    overflow: scroll;
    overflow-x: hidden;
  }
  #projects .backdrop .project_portion {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #projects .backdrop .project {
    width: 95%;
  }
  #projects .backdrop .project__details--title {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 600px) {
  #projects .backdrop h1 {
    font-size: 4rem;
  }
  #projects .backdrop .project_portion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #projects .backdrop .project {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin: 0.5rem;
    width: 95%;
    overflow: hidden;
  }
  #projects .backdrop .project__imgcontainer {
    display: none;
    position: relative;
    width: 35%;
    overflow: hidden;
  }
  #projects .backdrop .project__imgcontainer__img {
    width: 110%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 100px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #projects .backdrop .project__imgcontainer__overlay {
    position: relative;
    top: 150px;
    opacity: 1;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    background-color: rgba(241, 241, 241, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #projects .backdrop .project__imgcontainer__overlay:hover {
    opacity: 1;
  }
  #projects .backdrop .project__imgcontainer__overlay a {
    color: #525252;
    text-decoration: none;
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #projects .backdrop .project__imgcontainer__overlay a .title {
    font-size: 1.75rem;
    margin-right: 0.5rem;
  }
  #projects .backdrop .project__details {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #projects .backdrop .project__details--title {
    padding: 10px;
    font-size: 2.5rem;
    text-align: center;
  }
  #projects .backdrop .project__details--img {
    display: inline;
    width: 100%;
  }
  #projects .backdrop .project__details--img img {
    width: 100%;
  }
  #projects .backdrop .project__details--img--links {
    text-align: center;
  }
  #projects .backdrop .project__details--img--links a {
    color: #80a1bd;
    font-size: 2rem;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
  }
  #projects .backdrop .project__details--desc {
    padding: 10px;
    font-size: 1.65rem;
  }
  #projects .backdrop .project__details--desc p {
    margin: 20px 10px;
  }
}

#contact {
  margin: 0 auto;
  padding-top: 10vh;
  max-width: 75%;
  padding-bottom: 10vh;
}

#contact .backdrop {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 80vh;
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(241, 241, 241, 0.9)),
      to(rgba(200, 200, 200, 0.9))
    ),
    url('https://images.unsplash.com/photo-1466096115517-bceecbfb6fde?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-image: linear-gradient(
      to bottom,
      rgba(241, 241, 241, 0.9),
      rgba(200, 200, 200, 0.9)
    ),
    url('https://images.unsplash.com/photo-1466096115517-bceecbfb6fde?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  -webkit-animation: fadeIn 1s ease;
  animation: fadeIn 1s ease;
}

#contact .backdrop h1 {
  padding: 2rem;
  font-size: 5rem;
  -webkit-animation: fadeIn 1s ease 1s;
  animation: fadeIn 1s ease 1s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

#contact .backdrop .form-group {
  position: relative;
  margin: 7rem 15rem;
  background-color: rgba(135, 134, 113, 0.75);
  border-radius: 10px;
  padding: 5rem;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#contact .backdrop .form-group label {
  width: 50%;
  padding: 1rem;
}

#contact .backdrop .form-group input {
  font-size: 2rem;
  margin: 1rem;
  padding: 0.5rem;
  width: 50%;
  border: 0px;
  font-family: 'Urbanist', 'San-Serif';
}

#contact .backdrop .form-group textarea {
  padding: 0.5rem;
  margin: 1rem;
  height: 15rem;
  font-size: 2rem;
  padding: 0.5rem;
  width: 50%;
  font-family: 'Urbanist', 'San-Serif';
  border: 0px;
}

#contact .backdrop .form-group .button {
  padding: 0.5rem 1rem;
  margin: 2rem;
  font-size: 1.5rem;
  background-color: #80a1bd;
  border: 0px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#contact .backdrop .form-group .button:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  background-color: #e6e6e6;
}

#contact .backdrop .form-group .loading {
  opacity: 0;
  color: white;
  -webkit-transition: all 1.25s ease;
  transition: all 1.25s ease;
}

#contact .backdrop .form-group .active {
  opacity: 1;
  -webkit-animation: load 1.5s linear 0s infinite;
  animation: load 1.5s linear 0s infinite;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

#contact .backdrop .bottom {
  margin: 0 auto;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  font-size: 3rem;
  color: #525252;
  padding: 1rem;
  text-align: center;
}

#contact .backdrop .bottom a {
  color: #525252;
  padding: 3px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#contact .backdrop .bottom a:hover {
  color: #e6e6e6;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media only screen and (max-width: 950px) {
  #contact {
    max-width: 85%;
  }
  #contact .backdrop h1 {
    padding: 2rem;
    font-size: 5rem;
  }
  #contact .backdrop .form-group {
    position: relative;
    margin: 5rem;
    background-color: rgba(135, 134, 113, 0.75);
    border-radius: 10px;
    padding: 5rem 5rem 2rem;
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #contact .backdrop .form-group input {
    width: 65%;
  }
  #contact .backdrop .form-group textarea {
    width: 65%;
  }
  #contact .bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 600px) {
  #contact {
    max-width: 85%;
  }
  #contact .backdrop h1 {
    padding: 1rem;
    font-size: 5rem;
  }
  #contact .backdrop .form-group {
    position: relative;
    margin: 1rem;
    padding: 1rem;
  }
  #contact .backdrop .form-group input {
    width: 95%;
  }
  #contact .backdrop .form-group textarea {
    width: 85%;
  }
  #contact .bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: 'Urbanist', 'San-Serif';
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #525252;
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #e6e6e6;
}

::-webkit-scrollbar-thumb {
  background: #525252;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #80a1bd;
}
/*# sourceMappingURL=main.css.map */
