body {
    background-color: rgb(243, 237, 237);     
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem;  
    background-color: rgb(167, 124, 124);
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

.header-left i {
    color: white;
    font-size: 3rem;
    margin-right: 2rem;
  }

.header-left a {
    text-decoration: none;
    color: white;
}  

nav  {
    display: flex;
    gap: 1rem;
}

nav a {
    text-decoration: none;
    color: rgb(167, 124, 124);
    background-color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    padding: 1rem 1rem;
    border-radius: 10px;
    box-shadow: 5px 2px 2px rgba(0,0,0,0.25);      
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4,
figcaption {
    font-size: 1rem;
}

figcaption {
    font-style: italic;
}


.footer-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 2rem;    
    color: rgb(167, 124, 124);
    margin-top: auto; 
}

.footer-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-left i {
    color: rgb(167, 124, 124);
    font-size: 3rem;
    margin-right: 2rem;
  }

  .footer-left a {
    text-decoration: none;
    color: rgb(167, 124, 124);
}    

.footer-navigation .footer-right {
    display: flex;
    gap: 1rem;
} 

.footer-navigation .footer-right i {
    margin-right: .5rem;
}

.footer-navigation .footer-right a {
    text-decoration: none;
    color: rgb(167, 124, 124);
}



@media (max-width: 768px) {
    header {
        padding: 2rem 2rem;  
        flex-direction: column;
        gap: 2rem;
    }

    .header-left {
        gap: 0.5rem;
      }    

    nav  {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
    }
    
    nav a {
        text-decoration: none;
        color: rgb(167, 124, 124);
        background-color: white;
        font-size: 1.5rem;
        font-weight: 700;
        display: block;
        padding: 1rem 1rem;
        border-radius: 10px;
        box-shadow: 5px 2px 2px rgba(0,0,0,0.25);      
    }


    .footer-navigation {
        display: flex;
        flex-direction: column;
        padding: 2rem 2rem;    
        color: rgb(167, 124, 124);
        margin-top: auto; 
        gap: 1rem;
    }
    
    .footer-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 1px;
    }
    
    .footer-left i {
        display: none
      }
    
    .footer-left a {
        text-decoration: none;
        color: rgb(167, 124, 124);
    }    
    
    .footer-navigation .footer-right {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    } 
    
    .footer-navigation .footer-right i {
        margin-right: .5rem;
    }
    
    .footer-navigation .footer-right a {
        text-decoration: none;
        color: rgb(167, 124, 124);
    }    
}