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\ 3.jpeg'); 

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
