

header {
    background-image: linear-gradient(#26415B, #233C54, #162737);
    padding: 10px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    font-family: Aquirie;
    background: linear-gradient(90deg, #FF7E5F, #FEB47B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

    .nav-links li {
        display: inline;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.2s ease;
    }

        .nav-links a:hover {
            color: #0BF1F5;
        }

.menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.popup-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    background: #162737;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

    .popup-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .popup-menu ul li {
            padding: 10px;
        }

            .popup-menu ul li a {
                color: white;
                text-decoration: none;
                display: block;
                text-align: center;
            }

                .popup-menu ul li a:hover {
                    color: #0BF1F5;
                }

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .popup-menu.active {
        display: block;
    }
}

footer {
    padding: 10px;
    background: linear-gradient(#26415B, #162737);
    width: 100%;
    display: flex;
    flex-direction: column;
    bottom: 0;
    font-family: Aquire;
    color: white;
}

.footer-top {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
    .footer-top a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        transition: color 0.2s ease;
        padding: 10px;
        border-radius: 10px;
        margin: 10px;
    }

        .footer-top a:hover {
            color: #0BF1F5;
        }
.footer-bottom {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.footerImg {
    margin: auto;
    display: flex;
    flex-direction: row;
}
.footerImg img
{
    margin: auto;
    width: 50%;
}
.footerSecondaryImg {
    margin: auto;
    display: flex;
    flex-direction: row;
}
    .footerSecondaryImg img {
        margin: auto;
        width: 20%;
        min-width:170px;
        height: auto;
        margin-bottom: 10px;
    }
.footer-bottom p
{
    margin: 10px;
}
.footer-bottom a
{
    margin: 10px;
}



