/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header {
    background: #ffffff;
    color: rgb(7, 7, 7);
    padding: 10px 0;
    position: fixed;
    left: 22rem;
    z-index: 100;

  }
  
  nav ul {
    list-style: none;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin-right: 15px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
  }
  
  main {
    padding: 20px;
  }



  footer {
    background: #fe9799;
    text-align: right;
    padding: 0px 20px;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0; 
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: space-between; 

    /* z-index: 101; */
  }


  footer p a img{
    height: 30px;
    margin-bottom: -0.5rem;
  }

  footer p {
    margin-right: 1rem;
  }

  footer p a{
    text-decoration: none;
    color: rgb(0, 0, 0);
  }

  footer p a:hover{
    color: white;
    border: none;
  }

  
/* here */


@media screen and (max-width: 599px) {
  footer {
    display: block;
    text-align: center;
  }
}