header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 1rem 2rem;
    width: 100%;
    position: fixed;
    z-index: 10000;
}

.menu-icon {
    height: 2.5rem;
    transition: 0.3s;
    cursor: pointer;
}

.menu-icon:active {
    transform: scale(1.1);
}

header > img:nth-child(2) {
    height: 2rem;
}

nav {
    display: none;
}

nav li {
    transition: 0.3s;
}

nav li:active {
    transform: scale(1.1);
}

nav a:link {
    text-decoration: none;
    color: inherit;
}
  
nav a:visited {
    text-decoration: none;
    color: inherit;
}

header > img {
    cursor: pointer;
}

#menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    background: black;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 15vh;
    transform: translate(100%, 0);
}

#menu > * {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

#menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#menu-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.menu-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

#menu-nav button {
    margin-top: 1.5rem;

}

#menu-nav > div:nth-child(4) {
    margin-bottom: 4rem;
    margin-top: 3rem;
    background-color: gray;
}

.quote {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media only screen and (min-width: 1100px) {
    header > img:nth-child(2) {
        display: none;
    }  

    nav {
        display: flex;
    }

    nav ul {
        list-style-type: none;
        display: flex;
        align-items: center;
    }

    nav li:nth-child(1) {
        margin-right: 1rem;
    }

    nav li:nth-child(2) {
        margin-right: 2rem;
    }
}