main {
    background-color: #f8f5f2;
}

header h2 {
    color: #232323;
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    ;

}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
}

main p {
    color: #222525;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    margin-top: 10px;
    text-align: justify;
}

ul li a,
ul li a:visited {
    color: #f8f5f2;
    text-decoration: none;
    background-color: #078080;
    border: 2px solid #078080;
    display: inline-block;
    padding: 6px 10px;
    margin: 5px 0;
    transition: background-color 0.3s ease;
}

ul li a:hover {
    background-color: #066060;
    color: #ffffff;
    text-decoration: none;
}

table {
    color: #f8f5f2;
    border-collapse: collapse;
}

table td:first-child,
table th:first-child {
    background-color: #078080 !important;
    color: #f8f5f2;
}

table td:nth-child(2),
table th:nth-child(2),
table td:nth-child(3),
table th:nth-child(3) {
    background-color: #f45d48 !important;
    color: #f8f5f2;
}

.nav-links {
    display: block;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
}

.nav-links li {
    margin-bottom: 12px;
}

.nav-links a {
    display: block;
    background-color: #078080;
    color: #f8f5f2;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    border: 2px solid #078080;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: #066060;
    border-color: #066060;
}

img {
    transition: transform .25s ease;
}

img:hover {
    transform: scale(1.03);
}

footer {
    background-color: #f8f5f2;
    color: #222525;
    text-align: center;
    padding: 20px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

@media (min-width: 768px) {

    table.table {
        font-size: 1rem;
    }

    main p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }


}

@media (min-width: 992px) {

    main p {
        font-size: 1.1rem;
    }

    ul li a {
        font-size: 1.05rem;
        padding: 8px 16px;
    }

    table.table {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        gap: 16px;
    }


    .nav-links li {
        margin-bottom: 0;
    }

    .nav-links a {
        min-width: 180px;
    }
}