body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #ADD8E6;
    color: #000;
}

header {
    background: rgb(255, 255, 255, 0.6);

    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

section h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

main {
    text-align: center;
}

footer {
    text-align: center;
    padding: 10px;
    background: #fff;
    color: black;
}

.social-media {
    margin-top: 20px; 
    display: flex; 
    justify-content: center; 
}

.social-media a {
    display: inline-block; 
    width: 50px; 
    height: 40px;
    gap: 20px;
}

.social-media img {
    width: 100%; 
    height: auto; 
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.branding1 {
    flex: 0 1 auto;
}

.nav {
    flex: 1 1 auto;
}

.image {      
    height: 100vh;
  
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url('material/background\ 6.jpeg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}
table{
    display: flex;
    align-items: center;
    justify-content: center;
}

#table table {
    width: 100%; 
    border-collapse: collapse; 
    margin: 20px 0; 
    table-layout: fixed; 
}

#table th {
    background-color: #4CAF50; 
    color: white; 
    text-align: center; 
    padding: 15px; 
    border: 2px solid black; 
}

#table td {
    text-align: center; 
    padding: 12px; 
    border: 2px solid black; 
    vertical-align: middle; 
}

#table tr:nth-child(even) {
    background-color: #f2f2f2; 
}

#table tr:hover {
    background-color: #ddd; 
}
