*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: white;
}

div.sidenav{
    background-color: #ba66ff;
    height: 100%;
    border-right: 2px solid black;
    padding: 15px;
    width: 12%;
    display: block;
    position: fixed;
}

div.projects{
    transform: translate(286px);
    background-color: #ffffff;
    height: 100%;
    padding: 15px;
    width: 85%;
}

div.layout{
    height: 100%;
    width: 100%;
    display: grid;
    display: flex;
    grid-template-columns: repeat(2, fit-content);
    grid-template-rows: repeat(1, 100%);
}

ul{
    width: 100%;
    height: fit-content;
    list-style: none;
    align-items: center;
    justify-content: space-between;
}

li{
    width: 100%;
    padding-bottom: 20px;
}

a{
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 16px;
    width: 100%;
}

a.signup{
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background-color: #FF6F22;
    font-size: 16px;
    padding: 5px;
    border: 2px solid #fff;
    border-radius: 50px;
    padding-right: 55px;
    padding-left: 55px;
}

div.divider{
    width: 99%;
    height: 0.08px;
    background-color: #d7d7d7;
    margin-bottom: 50px;
}

div.divider2{
    width: 99%;
    height: 0.08px;
    margin-top: 35px;
    margin-bottom: 15px;
}

a.create{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    background-color: #FF6F22;
    border: 2px solid  #d7d7d7;;
    font-size: 18px;
    padding: 5px;
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 50px;
    width: 200px;
}

a.addbtns{
    text-decoration: none;
    font-size: 18px;
    border-radius: 50px;
    padding-left: 10px;
    padding-right: 3px;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-right: 20px;
    width: fit-content;
    cursor:pointer;
    color: #fff;
    background-color: #FF6F22;
    border: 2px solid  #d7d7d7;
}

h1{
    margin-bottom: 15px;
    padding-bottom: 25px;
    text-decoration: none;
    font-weight: lighter;
    font-size: 33px;
    color: white;
    font-family: 'Inter', sans-serif;
}

h3{
    padding-bottom: 25px;
    text-decoration: none;
    font-weight: lighter;
    font-size: 18px;
    color: black;
    font-family: 'Inter', sans-serif;
}

div.projects h1.title{
    text-decoration: none;
    font-weight: bolder;
    font-size: 50px;
    padding-bottom: 50px;
    color: black;
    font-family: 'Inter', sans-serif;
}

div.recentprojects{
    height: fit-content;
    margin-bottom: 30px;
    display: grid;
    display: flex;
    grid-template-columns: repeat(4, 150px);
    grid-template-rows: repeat(1, 100%);
}

div.project{
    margin-right: 20px;
    background-color: #d7d7d72e;
    height: 135px;
    width: 275px;
}

div.allprojects{
    margin-top: 15px;
    background-color: #d7d7d72e;
    width: 97%;
    height: 500px;
}