@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
  color: #263238;
  font-family: 'Plus Jakarta Sans';
  font-weight: normal;
}

h1{
  font-size: 48px;
}

h2{
  font-size: 40px;
}

h3{
  font-size: 32px;
}

h4{
  font-size: 24px;
}

h5{
  font-size: 20px;
}

h1,
h2,
h3,
h4,
h5{
  color: #37474F;
}

p,
ul{
  line-height: 2rem;
}

h6{
  color: #455A64;
  font-size: 12px;
  font-weight: lighter;
  letter-spacing: .25rem;
}

.font-light{
  font-weight: lighter;
}

a {
  color: #4528D8;
  font-weight: bold;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  opacity: 1;

  &.button{
    background-color: #4528D8;
    border-radius: 40px;
    color: #fff;
    text-align: center;
  }
}

.bg-translucent{
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(4px);
}

.project{
  background-color: #f5f5f5;

  p{
    line-height: 1.5rem;
  }
}

a:hover,
a img:hover {
  opacity: .5;
}

a img {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  opacity: 1;
}

a img:hover {
  opacity: .75;
}

a span {
  border-bottom: 3px solid transparent;
}

nav {
  left: -100%;
}

@media (min-width: 768px) {
  nav {
    left: initial;
  }
}