body {
    font-family: Georgia;
    text-align: center;
    margin: 0 auto;
    background-color: rgb(0, 48, 73);
    color: white;
}
         
header { 
    background-color: #e08c17; 
    color: black; 
    padding: 20px; 
    font-size: 24px; 
}
        

nav {
    margin: 15px 0;
}

 footer {
    background-color: #333;
    color: white;
    margin-top: 50px;
    padding: 30px 10px;
    bottom: 0;
}

.footer-content {
    max-width: 800px;
    margin: auto;
}

.footer-content p {
    margin: 10px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.footer-links a {
    color: #7cc7ff;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-note {
    font-size: 14px;
    opacity: 0.8;
}