/*
@font-face {
    font-family: 'Noto Sans Tamil';
    src: url('path-to-font/NotoSansTamil-Regular.ttf') format('truetype');
}
*/

body {
font-family: sans-serif;
background-color: #002f00;
color: #e6e680;
}

h1, h2, h3, h4, h5, h6 {
color: #e6e6e6;
}

b {
color: #e6e6e6;
}

a {
text-decoration: none;
color: #afafef;
}

a:hover {
text-decoration: underline;
color: #ff8f8f;
}

.header {
display: flex;
justify-content: space-between;
}

.layout {
max-width: 1024px;
margin: 0 auto;
line-height: 1.5;
}

.footer {
display: flex;
justify-content: space-between;
}

.image-gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}

.image-card {
max-width: 256px;
padding: 10px;
border: 1px solid #6f6f6f;
border-radius: 5px;
background: #001f1f;
color: #e6e6e6;
}

.image-card img {
width: 256px;
border-radius: 5px;
}

table {
width: 100%;
border-collapse: collapse;
}

th, td {
border: 1px solid #e6e6e6;
text-align: center;
padding: 5px;
}

.bold, th {
font-weight: bold;
color: #e6e6e6;
}
