  @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;
    }
  }
  
  /*  =======================SETUP========================= */
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  html {
    background-color: rgb(255, 255, 255);
    scrollbar-color: rgba(255, 255, 255, 0.986) rgb(241, 241, 241);
    scrollbar-width: none;
  }
  
  body {
    padding-left: 2em;
    padding-right: 2em;
    padding-top: 0;
    margin-top: 0;
    overflow-x: hidden;
  }
  
  @media screen and (max-width: 900px) {
    body {
      padding: 0 1em;
    }
  }
  
  h1,
  h2 {
    font-family: "IBM Plex Mono", monospace;
  }
  a,
  p {
    font-family: "IBM Plex Mono", monospace;
  }
  p {
    animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s;
    font-size: 1.2rem;
    color: rgb(71, 71, 71);
  }
  h1 h2{
    animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s;
  }
  img {
    animation: fadein cubic-bezier(0.5, 0, 0.75, 0) 1s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s;
  }
  
  /*  =====================SETUP END========================= */
  
  .navbar {
    display: flex;
    justify-content: space-between;
    position: sticky;
    height: 50px;
    font-size: 1rem;
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgb(0, 0, 0);
    z-index: 999;
    padding-bottom: 3rem;
  }
  
  .navbar a {
    position: relative;
    top: 15px;
    text-decoration: none;
    color: rgb(0, 0, 0);
  }
  .navbar a:hover {
    text-decoration: underline;
  }
  
  /*  =====================THE TITLE HOVER EFFECT========================= */
  
  .header {
    position: relative;
    top: 0;
    padding-bottom: 10em;
    padding-top: 10em;
    margin-left: 1vw;
    margin-right: 1vw;
    cursor: default;
  }

  .headergreeting {
    margin-bottom: 0;
    font-size: 3.5rem;
    font-family: 'IBM Plex Mono', monospace;
  }

  .headertitle {
    margin-bottom: 0;
    font-size: 4rem;
    font-family: 'IBM Plex Mono', monospace;
  }

  .headersubtitle {
    margin-top: 0;
    padding-top: 0;
    line-height: 1.1em;
    font-size: 3em;
    font-weight: 100;
    font-family: 'IBM Plex Mono', monospace;
  }
  
  @media screen and (max-width: 900px) {
    .header {
      padding-top: 2em;
      padding-bottom: 2em;
    }
    .headergreeting {
        margin-bottom: 1rem;
        font-size: 1.9rem;
        font-family: 'IBM Plex Mono', monospace;
      }
    .headertitle {
      font-size: 1.9rem;
      margin-bottom: -20px;
    }
    .headersubtitle {
      font-size: 1.5rem;
    }
  }


  /*  =====================CONTACTS========================= */
.contact {
    position:relative;
    margin-left: 1vw;
    margin-right: 1vw;
}

  .sociallinks img {
      width: 35px;
      height: 40px;
      padding-bottom: 0.5rem;
  }
   
  /*  =====================FOOTER========================= */
  footer {
    border-top: 1px black solid;
    position: relative;
    text-align: right;
    width: 100%;
    z-index: 4;
    margin: 0;
    background-color: white;
    font-family: 'IBM Plex Serif';
  }
  footer h1 {
    padding-top: 0.5em;
    font-size: 1.3rem;
  }
  footer a {
    font-size: 1.1em;
    outline: none;
    text-decoration: none;
  }
  footer a:hover {
    text-decoration: underline;
    outline: none;
    color: rgb(0, 0, 0);
  }
  
  @media screen and (max-width: 675px) {
    footer h1 {
      font-size: 1.2rem;
    }
  
    footer a {
      font-size: 1rem;
      text-decoration: none;
    }
  }