body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #568c99af;
    color: #ffffff;
}

header {
    background-color: #3b4f62;
    color: white;
    padding: 30px;
    text-align: center;
}

section {
    padding: 40px;
    text-align: center;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #568c99af;
    padding: 10px;
    border-radius: 8px;
    width: 220px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(177, 166, 166, 0.2);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
} 

h2 {
    text-align: center;
}

table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    background-color: white;
}

th, td {
    border: 1px solid #333;
    padding: 10px;
    text-align: center;
}

th {
    background-color: #2c3e50;
    color: white;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}