@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background-color: #00072d;
    transition: 250ms;
}

header h1 {
    color: #fff;
}

nav {
    position: relative;
    background-color: #00072d;
}

nav .active {
    color: #FFBF00;
}

.menu-item {
    position: relative;
    margin-left: 25px;
    color: white;
    transition: 200ms;
    cursor: pointer;
    display: inline-block;
    height: 100%;
    text-align: center;
    font-size: 1.1em;
}

.menu-item:hover {
    transform: scale(110%);
    color: #FFBF00;
}

.hamburger {
    display: none;
    color: #FFBF00;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000000;
}

.web-logo {
    background-color: transparent;
    display: block;
    width: 3em;
    height: 3em;
    z-index: 100000000;
}

/* Footer */

footer {
    padding: .5em 0;
    background-color: grey;
    margin-top: 1.5em;
}

footer p {
    color: rgba(0,0,0,.7);
    text-align: center;
}

@media screen and (max-width: 700px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }

    nav {
        position: absolute;
        left: 0;
        transform: translateY(-100%);
        z-index: 1000000;
        width: 100%;
        transition: 300ms ease-in;
    }

    .menu-item {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0;
        font-size: 1.2em;
        padding: .7em;
        font-weight: bold;
    }

    header {
        padding: 15px 5%;
    }

    .clicked {
        transform: translateY(66%);
    }
}