@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f8;
    color:#111827;
}

a{
    text-decoration:none;
    color:inherit;
}

.tw-dashboard{
    display:grid;
    grid-template-columns:260px 1fr;
    min-height:100vh;
}

.tw-content{
    padding:40px;
}