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

:root {
  --primary-bg: #282c34;
  --secondary-bg: #333;
  --primary-heading: #9cdcf0;
  --highlight-color: #555;
  --primary-text: #fff;
  --secondary-text: #b4b4b4;

  --placeholder-brace: #dcb862;
  --placeholder-currency: #d4d4d4;
  --placeholder-navbar--home: #9cdcf0;
  --placeholder-args: #4a9cd6;
  --placeholder-initials: #fff;
}


body {
    background-color: #282c34;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    color: #b4b4b4;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    /* -moz-osx-font-smoothing: grayscale; */


  }
  /* 
Wrapper > Rows:
main > header article footer
*/
.grid-container {
  display: grid;
grid-template-areas: 
"header"
"article"
"footer";
}

header {
grid-area: header;
}

article {
grid-area: article;
}

footer {
grid-area: footer;
}


.container {
  width: 100%;
  margin: 0 auto;
  display: flex; 
  justify-content: space-between; 
  align-items: center; 

}


h1 {
  font-size: 2rem;
  
}

  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;

  }
  
  p {
    margin-bottom: 1rem;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }



.logo {
  width: 100px; /* Adjust as needed */
  height: auto;
  margin: 10px; /* Adjust as needed */
}
