body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
}

header {
    background-color: #1e2a38;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    font-weight: bold;
    text-decoration: none;
}

nav a:hover {
    color: red;
}

main {
    padding: 30px;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.tagline {
    font-size: 18px;
    color: gray;
}

.featured {
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}

th {
    background-color: #1e2a38;
    color: white;
    padding: 12px;
}

td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background-color: #f1f1f1;
    
}

#row:hover {
    transform: scale(1.05);
}

table img {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.next-page {
    text-align: center;
    margin: 40px 0;
}

.next-button {
    background-color: #1e2a38;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
}

.next-button:hover {
    background-color: #f0c040;
    color: black;
}

footer {
    background-color: #1e2a38;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
