body {
    margin: 0;
    /* padding: 20px; */
    font-family: Garamond;
    background: linear-gradient(135deg, #002f4b 0%, #65165c 100%);
    /* background-size: cover; */

    /* background-repeat: no-repeat; */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav { 
    background: linear-gradient(to left, #002f4b 0%, #65165c 100%);
    border: 2px outset black;
    border-radius: 10px;
    padding: 10px 0;
    font-size: 20px;
    
    text-decoration: underline;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 5px 10px;

    border-radius: 8px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #13c965;
}

.nav-container {
    display: flex;

    align-items: center;

    justify-content: center;
    padding: 10px 20px;
    /* margin: 25px; */
    background-color: #411854; 
}

.logo {
    margin-right: 20px; 


}

.logo img {

    width: 50px;
    height: auto;
    border-radius: 50%;
}

header {
    text-align: center;
    padding: 20px;

    color: #08cbf1;
    text-decoration: underline;
}

h2 {
    font-size: 40px;
}

h1 {
    font-size: 50px;
}

section {
    padding: 20px;
    /* margin:15px; */
    text-align: center;
    color: white;
    
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 25px;
    
    min-width: 400px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background-color: rgb(67, 137, 113); 
}

table, th, td {
    border: 1px solid #ddd;
    padding: 12px;
}


th {
    background-color: #002f4b; 
    color: white;
    text-align: center;


}

td {
    text-align: center;
}

table a {
    color: #8fee09;
    text-decoration: none;

    transition: color 0.3s ease;
}

table a:hover {
    color: #f46d0d;
}

footer {
    background-color: #112c42;
    padding: 10px 0;

    text-align: center;
    color: white;
    margin-top: auto;
}

@media (max-width: 768px) {
    nav ul {
        
        flex-direction: column;
    }

    nav ul li {
       
       
        margin: 10px 0;
    }

    table, th, td {

        font-size: 16px;
    }
}

@media (max-width: 480px) {

    nav ul li {
        margin: 5px 0;
    }

    table, th, td {
        font-size: 14px;
    }
}
