body{
    color: crimson;
    margin: 0;
    padding: 0;
}


h1, h2{
    text-align: center;
}

 
nav ul,
nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 1rem;
}

li a {
    color: white;
    background-color: crimson;
    display: inline-block;
    padding: 0.5rem 2rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

li a:hover{
    background-color: black;
}

nav ul li.active a {
    background-color:black;
}


.container {
    margin: 1rem 2rem;
}


  /* On screens that are 992px or less, set the background color to blue */
  @media screen and (max-width: 992px) {

  }
  
  /* On screens that are 576px or less, set the background color to olive */
  @media screen and (max-width: 576px) {
  
  }