/* 
font-family: 'Space Grotesk', sans-serif;
font-family: 'Space Mono', monospace;
*/

/********* Global Styles ***********/
  
  
  h1, .title span {
    font-size: 40px;
    letter-spacing: 10px;
    margin: 50px 0 30px;
  }
  
  h2 {
    font-size: 28px;
    letter-spacing: 5px;
    margin: 30px 0;
  }
  
  h3 {
    font-size: 20px;
    letter-spacing: 5px;
    margin: 20px 0;
    border-image: linear-gradient(white, #38495a) 25;
    border-width: 2px;
    border-bottom-style: solid;
  }
  
  p {
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 26px;
  }
  
  /* #header {
    overflow-y: hidden;
  } */
  
  .link {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: normal;
    border-image: linear-gradient(white, #38495a) 25;
    border-width: 2px;
    border-bottom-style: solid;
    text-decoration: none;
    color: #ffffff;
  }
  
  .link:hover {
    border-image: linear-gradient(lime, #38495a) 25;
  }
  
  /********* Main Styles ***********/
  
  header {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      border: none;
      padding: 0;
  }
  
  .brand {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo img{
    max-width: 150px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 9;
  } 
  
  .title {
    margin-left: 10px;
    background: -webkit-linear-gradient(#38495a, #e5deff, #38495a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  } 
  
  .title h1, .title span, nav li a {
    background: -webkit-linear-gradient(#38495a, #e5deff, #38495a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
  }
  
  .title span {
    font-size: 30px;
  }
  
  nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  nav ul li {
    display: inline-flex;
  }
  
  nav li a {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: normal;
    margin: 5px 10px 0;
    background: -webkit-linear-gradient(#38495a, #e5deff, #38495a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-image: linear-gradient(white, #38495a) 25;
    border-width: 1px;
    border-bottom-style: solid;
  }
  
  nav li a:hover {
    border-image: linear-gradient(lime, #38495a) 25;
  }
     
  /********** Mobile Styles **********/
  
  @media (max-width: 700px) {
    .brand {
      flex-direction: column;
    }
  
    .title {
      text-align: center;
      margin: 0 50px;
    }
  }
  
  @media (max-width: 320px) {
    h1, .title span {
      font-size: 8vw;
    }
  
    h2 {
      font-size: 7vw;
    }
  
    h3 {
      font-size: 5.5vw;
    }
    
    p, .link {
      font-size: 4.5vw;
    }
  }