.header {
    width: 100%;
    background: white;
    box-shadow: 0 0 5px grey;
    position: fixed;
    top: 0;
    z-index: 50;
    padding: 15px;
    display: flex;
    align-items: center;
    z-index: 100;
}
.header__nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__burger {
    position: relative;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header__burger--line {
    height: 4px;
    width: 100%;
    background-color: var(--green);
}

.header__link {
    display: block;
    width: 55px;
}

.header__menu {
    width: 300px;
    height: 500px;
    background-color: white;
    box-shadow: 0 0 5px grey;
    position: fixed;
    top: 95px;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 60px;
    border-radius: 15px;
    overflow: hidden;
}

.header__menu--li {
    margin: 10px 0;
    text-align: center;
}

.header__menu--li a {
    color: var(--green);
    font-family: 'Quattrocento';
    font-size: 18px;
}

.header__menu--background{
    position: absolute;
    bottom: 0px;
    left: -50px;
    width: 350px;
    height: 225px;
    background-image: url(../img/leavesPattern.png);
    background-size: cover;
}