@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FEFAE0;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    
    width: 100%;
}

header .logo {
    text-decoration: none;
    color: inherit;
}

header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #BC6C25;
    margin-left: 50px;
}
hr {
    margin: 20px;
    color: #283618;
}
.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #BC6C25;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 10px 15px;
}

.nav-links a:hover {
    color: #DDA15E;
}

section h1 {
    color: #333;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5em;
}
table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #FFF;
}
table thead {
    background-color: #BC6C25;
    color: #FEFAE0;
}

table th,
table td {
    padding: 12px 15px;
    text-align: left;
}

table th {
    font-size: 18px;
    font-weight: bold;
}

table tbody tr:nth-child(even) {
    background-color: #F8F8F8;
}

table tbody tr:hover {
    background-color: #F1F1F1;
}

table tbody tr td {
    border-bottom: 1px solid #DDD;
}


@media (max-width: 768px) {
    table {
        width: 100%;
    }

    table th,
    table td {
        font-size: 14px;
        padding: 8px 10px;
    }
}


footer {
    text-align: center;
    margin-top: 20px;
    background-color: #283618;
    color: white;
    width: 100%;
    padding: 10px;
    position: absolute;
    bottom: 0;
}