@import url('https://fonts.googleapis.com/css2?family=Blinker&family=Tauri&display=swap');

body {
  background-color: black;
  font-family: 'Tauri', sans-serif;
}

a {
  color: black;
}

a:hover {
  color: black;
}

.card {
  height: 100%;
  position: relative;
}

.btn-group {
  bottom: 5%;
  left: 5%;
  position: absolute;
}

.navbar {
  background-color: black;
  color: white;
  font-family: 'Blinker', sans-serif;
  text-transform: uppercase;
}

.nav-link, .navbar-brand {
  color: white;
}

.navbar-brand:hover {
  color: lightgray;
}

.nav-link:hover {
  color: lightgray;
}

nav {
  padding-left: 10vw;
  padding-right: 7vw;
}
@media (max-width: 767px) {
  nav {
    padding-left: 10px;
    padding-right: 0px;
}
  .nav-link {
    text-align: center;
  }
}

.logo {
  max-width: 35px;
}

.centered {
  text-align: center;
}

/* Portfolio style */

:root {
  --jumbotron-padding-y: 3rem;
}
  
.jumbotron {
  padding-top: var(--jumbotron-padding-y);
  padding-bottom: var(--jumbotron-padding-y);
  margin-bottom: 0;
  background-color: #fff;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
    url("../img/desk.jpg");
  background-repeat:no-repeat;
  background-size:cover;
  font-family: 'Blinker', sans-serif;
}

@media (min-width: 768px) {
  .jumbotron {
    padding-top: calc(var(--jumbotron-padding-y) * 2);
    padding-bottom: calc(var(--jumbotron-padding-y) * 2);
  }
}
  
.jumbotron p:last-child {
  margin-bottom: 0;
}
  
.jumbotron-heading {
  font-weight: 300;
}
  
.jumbotron .container {
  max-width: 40rem;
}

.jumbotron-heading {
  color: white;
  text-shadow: 0px 0px 3px white;
}

.jumbotext {
  color: white !important;
  text-shadow: 0px 0px 3px white;
}

.btn-outline-dark {
  color: black;
  border-color: black;
}

h1, h5 {
  font-weight: bold;
  font-family: 'Blinker', sans-serif;
}

.card-img-top {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */    
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray; /* IE 6-9 */
  transition: 0.7s;
}

.card-img-top:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  filter: none;
  transition: 0.7s;
}

.py-5 {
  padding-top: 2rem!important;
  padding-bottom: 2rem!important;
}

h1 {
  padding-bottom: 1rem;
}

.btn-more {
  padding: 1rem;
  margin-top: 1rem;
  width: 30vw;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Contact */

.contact-me {
  background-color: #DFDFDF;
}

.form-group {
  margin-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.contact-btn {
  margin: 0 auto;
  display: block;
}

/* Footer */
  
footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: black;
}
  
footer p {
  margin-bottom: .25rem;
}

footer a {
  color: white;
}

footer a:hover {
  color: lightgrey;
}

/* Animations */

.jumbotext, .jumbotron-heading {
  animation: fadein 2s;
  -moz-animation: fadein 2s; /* Firefox */
  -webkit-animation: fadein 2s; /* Safari and Chrome */
  -o-animation: fadein 2s; /* Opera */
}

@keyframes fadein {
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}

@-moz-keyframes fadein { /* Firefox */
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
  from {
      opacity:0;
  }
  to {
      opacity:1;
  }
}

@-o-keyframes fadein { /* Opera */
  from {
      opacity:0;
  }
  to {
      opacity: 1;
  }
}

.fadeInRight {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInRight {
  0% {
     opacity: 0;
     -webkit-transform: translateX(20px);
  }
  100% {
     opacity: 1;
     -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
     opacity: 0;
     transform: translateX(20px);
  }
  100% {
     opacity: 1;
     transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.fadeInLeft {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  0% {
     opacity: 0;
     -webkit-transform: translateX(-20px);
  }
  100% {
     opacity: 1;
     -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
     opacity: 0;
     transform: translateX(-20px);
  }
  100% {
     opacity: 1;
     transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}