body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

#slider {
    width: 100%;
    height: 450px;
    margin: 50px auto;
    overflow: hidden;
    position: relative;
    margin-top: -2%;
}
#slider img {
    width: 100%;
    height: 100%;
    position: absolute;
}
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: bold;
    display: flex;
    gap: 10px;
}
.letter {
    opacity: 0;
}


table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}
table, th, td {
    border: 1px solid black;
}
th, td {
    padding: 8px;
}
th {
    background-color: #f2f2f2;
    text-align: center;
}
td {
    vertical-align: middle;
}

tr:nth-of-type(even) {
    background-color: #f3f3f3;
}


#tables table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: 'Arial', sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
#tables table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}
#tables  table th, table td {
    padding: 12px 15px;
}
#tables table tbody tr {
    border-bottom: 1px solid #dddddd;
}
#tables table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
#tables table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}