* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    color: #dfdfdf;
    width:100%;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }

  .navbar-link{
    backface-visibility: hidden;
    -webkit-font-smoothing: antialised;
  }
  
  #navbar {
    display: flex;
    /* justify-content:space-between; */
    align-items: center;
    background: #0c1618;
  
    position: fixed;
    top: 0;
    left: 0;
    height: 45px;
    width: 100%;
    padding: 0 max(30px, 6%);
    z-index: 1;
  
    /* background: repeating-linear-gradient(#e66465, #e66465 5px, #9198e5 5px, #9198e5 10px);; */
    /* background-repeat: 2; */
  }
  
  .project-link {
    /* display: block; */
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #dfdfdf;
    transition: transform 1s, color 1s;
    /* background-color: red; */
    height: 100%;

    /* display: flex; */
  }
  
  .navbar-link-div {
    background: transparent;
    border: 0.4px solid #747578;
    border-radius: 45px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.4s;
  }
  
  .navbar-link-div:hover {
    background-color: #747578;
    transform: scale(1.08);
    backface-visibility: hidden;
  }
  
  #links > div {
    margin: 0px 20px;
    backface-visibility: hidden;
  }
  .navbar-link-div {
    padding: 5px 15px;
  }
  
  #welcome-section {
    background-color: #7d1128f3;
    height: 100vh;
    width: 100%;
    color: hsla(0, 9%, 82%, 0);
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px #0c1618;
  }
  
  #welcome-section > * {
    /* background-color: blueviolet; */
    color: #dfdfdf;
    margin: 0 15px;
    text-align: center;
  }
  #welcome-section h1 {
    font-size: 2.5rem;
  }
  #welcome-section p {
    font-size: 1.5rem;
  }
  
  #project-present {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: #0c1618;
    width: fit-content;
    margin: 30px auto;
    border: 1px solid #0c1618;
    padding: 20px;
    text-align: center;
    height: 100px;
    /* border-style: groove; */
  }

  
  #projects {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    margin: 10px 8%;
    padding: 12px;
    background: #dfdfdf;
  }
  
  .project-tile {
    height: 330px;
    margin: 8px;
    background: #c0090900;
    transition: box-shadow 0.3s;
  }
  
  .project-tile:hover {
    transition: box-shadow 0.3s;
    box-shadow: -5px 5px 7px #0c1618;
  }
  
  img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: left;
    transition: opacity 1s;
  }
  
  .project-picture {
    background: #0c1618;
    width: 100%;
    height: 92%;
  }
  
  .project-caption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* transition: color 1s, font-size 1s, padding 1s; */
    width: 100%;
    height: 100%;
    transform: translateY(-300px);
    text-align: center;
    /* color: transparent; */
    /* font-size: 0.8rem; */
  }
  
  .appear{
    /* color: inherit; */
    font-size: inherit;
    transition: transform 1s, color 1s;
    text-align: center;
    /* color: #dfdfdf00; */
    margin:auto 0;
    color: transparent;
    /* background-color: blue; */
  }
  
  .project-code-link {
    display: flex;
    flex-direction: column;
    background: #0c1618;
    justify-content: center;
    height: 8%;
    text-align: center;
    text-justify: center;
  }
  
  .project-picture:hover .project-link {
    font-size: 1rem;
    color: #dfdfdf;
    transform: scale(1.2);
  }

  .project-picture:hover .appear {
    color: #dfdfdf;
  }
  
  .project-tile:hover img {
    opacity: 0.1;
  }
  
  .code-link {
    display: block;
    transition: 1s;
  }
  
  .project-code-link:hover .code-link {
    color: #f5853f;
    transform: scale(1.1);
  }
  
  footer {
    width: 100%;
    height: fit-content;
    background: #0c1618;
    color: #dfdfdf;
    box-shadow: 0 -3px #747578;
    font-size: 16px;
  }

  
  
  #hook {
    text-align: center;
    box-shadow: 0 2px #747578;
    padding: 50px;
    font-size: 16px;
  }

  .big{
      font-size: 3em;
  }
  .small{
      font-size: 2em;
  }
  
  #link-footer-div {
    padding: 50px;
    display: flex;
    justify-content: center;
  }
  
  #link-footer-div > * {
    display: inherit;
  }
  
  .link-footer-div {
    margin: 0 25px;
    transition: transform 0.3s;
  }
  
  .link-footer-div:hover {
    transform: translateY(8px);
  }
  
  svg {
    height: fit-content;
  }
  
  path {
    fill: #dfdfdf;
    width: 25px;
  }
  
  .footer-link {
    padding-top: 7px;
    padding-left: 5px;
    font-size: 20px;
  }
  
  @media (min-width: 750px) {
    #navbar {
      justify-content: flex-end;
    }
    #links {
      display: flex;
      transform: translateX(20px);
    }
    #big {
      font-size: 3rem;
    }
  
    #small {
      font-size: 1.5rem;
    }
    .project-caption {
      padding: 30px;
    }
  }
  
  @media (max-width: 1100px) {
    #projects {
      grid-template-columns: 1fr 1fr;
      margin: 10px 1%;
    }
    .project-caption {
      padding: 50px;
    }
  }
  
  @media (max-width: 750px) {
    #big {
      font-size: 2rem;
    }
  
    #small {
      font-size: 1rem;
    }
    #hook {
      padding-right: 5px;
      padding-left: 5px;
    }
    #navbar {
      padding: 0px;
    }
    #links {
      width: 100%;
      display: flex;
      justify-content: flex-end;
    }
  
    .navbar-link-div {
      margin-left: 0;
    }
    #projects {
      grid-template-columns: 1fr;
      margin: 10px 1.5%;
    }
  }
  
  @media (max-width: 360px){
    #link-footer-div {
        flex-direction: column;
        row-gap: 21px;
    }

    #projects{
      margin: 10px 1%;
    }

    #hook{
        font-size: 8px;
    }

    #links > div {
        margin: 0px 0px;
      }

    .navbar-link-div{
        border-radius: 0;
        border: transparent;
    }
    #project-caption{
      font-size: 1rem;
      padding: 40px;
    }
  } 