@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  ::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background-color: #151515;
}

::-webkit-scrollbar-thumb {
    background-color: #29282e;
    border-radius: 12px;
}

  :root{
    --accent-color: #e4a0cc;
  }

  body {
    background-color: #09090b;
    color: #fff;
    font-family: "Inter", sans-serif;
    line-height: 1.2;

    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

  main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px;

}

  .project_block{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    height: auto;
    width: 100%;
    background-color: #101013;;
    border: 1px solid #1f1f21;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
    border-radius: 23px;
    transition: all 0.2s ease-in-out;
    max-width: 600px;
  }

  .project_block:hover{
    border: 1px solid #61616a;
  }

  .project_block img{
    margin: 0 auto; 
    display: block; 
  }

  .project_block h2{
  text-align: center;
    color: #f8f8f8;
  }
  .project_block button{
    margin: 0 auto; 
    display: block; 
    background-color: #c024ff;
    border-style: none;
    border-radius: 23px;
    color:white;
    height: 35px;
    width: 150px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
  }
  .project_block button:hover{
    transform: scale(1.05);
    cursor: pointer;
  }
  .project_block h4{
  text-align: center;
    font-weight: 200;
    font-size: 18px;
    color: #f8f8f870;
  }
  
  h1{
  color: #826cfb;
  }
