@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

body {
   font-family: 'Nunito', sans-serif;
   margin: 0;
   padding: 0;
   min-height: 100vh;
   display: flex;
   flex-direction: column;
}


.content {
   margin-top: 100px;
   /* Adjust based on the height of nav */
   margin-left: 300px;
   /* Adjust based on the width of sidebar */
   padding: 10px;
   height: calc(100vh - 100px);
   /* Adjust based on the height of nav */
   overflow-y: visible;
   background-color: #fff;
   font-size: 1.1rem;
}