@media screen and (min-width: 481px) {
    header {
        --text-size: 0.6rem;
    }
}
@media screen and (max-width: 480px) {
    header {
        --text-size: 1.0rem;
    }
}

header {
    --background-color: #e1ded1;
    background-color: var(--background-color);

    font-size: var(--text-size);
    font-weight: bold;
}

header nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
@media screen and (max-width: 480px) {
    .humberger-button {
        display: flex;
        flex-direction: column;
        box-sizing: content-box;
        box-sizing: border-box;
        width: 44px;
        height: 44px;
        padding: 6px 0;
        cursor: pointer;
        justify-content: space-between;
        align-items: center;
    }

    .humberger-button span {
        width: 22px;
        height: 3px;
        border-radius: 3px;
        background-color: #111;
    }

    #header-title {
        position: fixed;
        z-index: 9999;
        top: 0;
        right: -120%;
        overflow: auto;
        width: 100%;
        height: 100%;
        min-height: calc(100vh - 60px);
        /* padding: 30px 20px 100px; */
        transition: .3s ease-in-out;
        background: #ededed;

    }

    #menu-box {
        display: flex;
        justify-content: flex-end;
    }

}
@media screen and (min-width: 481px) {
    #humberger-button {
        display: none;
    }
    #menu-body {
        display: block;
    }
    
    #header-title ul {
            display: flex;
            flex-direction: row;
            justify-content: space-between;   
    }
}


header ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: flex-start;

    color: var(--background-color);
}

@media screen and (max-width: 480px) {
    header ul li {
        margin: 20px 0 20px 0;
    }
}

header ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
}

.sec-number {
    display: flex;
    flex-direction: column;

    width: calc(var(--text-size) * 2);
    height: calc(var(--tex-tisze) *2);

    text-align: center;
    border-radius: 50%;
    color: var(--background-color);

}