* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.about-us {
    text-align: center;
    width: 65%;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.navbar .logo img {
    width: 50px;
    height: auto;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar .nav-links li {
    display: inline;
}

.navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    transition: background-color 0.5s ease;
}

.navbar .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

footer {
    background-color: black;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
}

.social-media img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

.social-media img:hover {
    opacity: 1;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

h2 {
    font-weight: bold;
    color: white;
    font-size: 50px;
}

section {
    padding: 50px;
    width: 100%;
}

section#home {
    height: 100vh;
    background-image: url('home/background.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

section#information {
    height: 100vh;
    background-image: url('home/information.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
section#information p {
    font-weight: 400;
    color: white;
    font-size: 20px;
    text-align: justify;
}
