styles/styles.css
@font-face {
    font-family: 'Boing';
    src: url('/fonts/Boing-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Boing';
    src: url('/fonts/Boing-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Boing', Arial, sans-serif;
    background-color: #E6F7FF;
    color: #003366;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    background-color: #007ACC;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.navbar .logo img {
    height: 130px;
}

.top-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0;
}

.top-menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Boing', sans-serif;
    padding: 10px 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.hero {
    position: relative;
    height: 90vh;
    background: url('/images/background.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.center-logo {
    max-width: 300px;
    height: auto;
}

footer {
    background-color: #FFFFFF;
    color: #003366;
    text-align: center;
    padding: 1em 0;
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .top-menu {
        flex-direction: column;
        gap: 10px;
    }
    .hero {
        height: auto;
        padding: 20px;
    }
    .center-logo {
        max-width: 200px;
    }
}
