   /* Fonts */

   /* tektur-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Tektur';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/tektur-v3-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/tektur-v3-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }

  /* tektur-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Tektur';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/tektur-v3-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/tektur-v3-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }

  /* tektur-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Tektur';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/tektur-v3-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/tektur-v3-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }

  /* layout */

  html, body{
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  #bbackground{
    margin: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -2;
    background: rgb(200,200,200);
    /*background: linear-gradient(45deg, rgba(255,221,205,1) 35%, rgba(209,255,208,1) 100%);*/
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  #background{
    margin: 0;
    height: 100%;
    width: 100%;
    background-image: url("/images/filled_svg_pcb.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(5px);
    position: absolute;
    z-index: -1;
  }

  #logo{
    margin-left: auto;
    margin-right: auto;
    width: 160px;
    height: 160px;
    display: block;
  }

  #header{
    display: grid;
    grid-template-areas:"projects logo about";
    grid-template-columns: 33% 33% 33%;
    width: 80%;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(50,50,50);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  #header > div{
    display: block;
    margin: auto;
    font-size: xx-large;
    font-family: "Tektur", sans-serif;
    font-weight: 600;
  }

  #header > div > a{
    color: white;
    text-decoration: none;
  }

  .projects{
    grid-area: projects;
  }

  .logo{
    grid-area: logo;
  }

  .about{
    grid-area: about;
  }


  #container{
    width: 100%;
    margin-top: 30px;
    height:fit-content;
    display: grid;
    grid-template-columns: auto auto auto;
    row-gap: 50px;
  }

  #head{
    white-space: pre-line;
    text-align: center;
    font-size: larger;
    font-family: "Tektur", sans-serif;
    font-weight: 600;
    line-height: 30px;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
  }

  .div_wide{
    width: 80%;
    height: fit-content;
    text-align: center;
    display: block;
    margin: auto;
    background: rgb(255,255,255);
    border: 2px;
    border-style: solid;
    border-radius: 20px;
    border-color: black;
    grid-column-start: 1;
    grid-column-end: 4;
  }

  #container > div > p{
    margin: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }


