html, body 
{
    
    font-family: Arial, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
    display:flex ;
    flex-direction: column;
}

p{
    margin: 29px;
    font-size: 25px;
}

header{
    background-color: #0056b3;
    color: white;
    padding: 15px;
    text-align: center;
}


nav ul{
    list-style-type: none;
    padding: 0;
    background: #003d82;
    text-align: center;
}

nav ul li{
    list-style-type: none;
    padding: 0;
    background: #003d82;
    text-align: center;
}
nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px black;
    border-radius: 8px;
    flex:1 ;
}

h1{
    color: white;
}

h2 {
    color: #0056b3;
}

ul{
    list-style-type: none;
    padding: 0;
}
ul li{
    background: #e0e0e0;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

ul li a{
    text-decoration: none;
    color: #0056b3;
    font-weight: bold;
}

footer {

    
    margin: 0;
    text-decoration: none;
    padding: 15px;
    background: #003d82;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}






.logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
}

.logo-title img {
    height: 70px;
    width: auto;
}

.logo-title h1 {
    margin: 0;
    font-size: 28px;
    color: white;
}