@import url('./reset.css');

html,body {
    margin: 0; /* Removes the default margin */
    padding: 0; 
    font-family: Montserrat, Calibri, sans-serif;
    box-sizing: border-box; /* Ensures consistent box-sizing */
    color:white;
    background-color: black;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    max-width: 100%;
  }

  
  header {
    position: fixed; /* Sticks the navbar to the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: black;
  }

.content {
    flex: 1; /* Pushes the footer to the bottom */
}
