/* Imports */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&family=Source+Code+Pro:wght@400;500&display=swap");

/* Variables */
:root {
    --col-dark: #16123f;
    --col1: #abd699;
    --col2: #ffe26a;
    --col3: #75c9b7;
    --col4: #c7ddcc;
}
  
body {
font-family: 'Poppins' sans-serif;
background: var(--col1);
color: var(--col-dark);
font-size: 1rem;
}

h1 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 2rem;
}

h2 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 1rem;
}

/* Navbar */
.navbar {
    background: var(--col1);
    padding: 0% 2rem;
  }
  
  .navbar .navbar-brand {
    font-family: 'Source Code Pro', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--col-dark)
  }
  
  .nav-item {
    padding: 0 18px;
  }
  
  .nav-link {
    font-family: 'Source Code Pro', sans-serif;
    font-weight: 100;
    font-size: 1rem;
  }