header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2), 0 0.375rem 1.25rem rgba(0, 0, 0, 0.19);
    background-color: var(--base-color);
    z-index: 999;
    top: 0;
    left: 0;
}

.navbar {
    /* max-width: 1300px; */
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg {
    fill: var(--text-color);
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.menu button,
.menu svg {
    display: block;
    background: none;
    border: 0;
    cursor: pointer;
}

.thema-change {
    height: 32px;
    width: 32px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thema-change svg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    margin: 0;
    padding: 0;


}



@keyframes sun {
    to {
        transform: rotate(360deg);
    }
}

@keyframes moon {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(25deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-25deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes go {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }


    100% {
        opacity: 0;
        transform: rotate(360deg);
    }
}

@keyframes come {
    0% {
        opacity: 0;
        transform: rotate(-360deg);
    }

    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

.day-btn {
    width: 100%;
    height: 100%;
}

.nigt-btn {
    padding-top: 3px;
    width: 80%;
}

.menu-in {
    width: 330px;
    /* height: 400px; */
    margin: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 50px;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2), 0 0.375rem 1.25rem rgba(0, 0, 0, 0.19);
    border-radius: 20px;
    background-color: var(--menu-color);
    z-index: 998;
    display: flex;
    opacity: 0;
    transform: translateY(-110%);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.menu-in.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-in ul {
    padding-top: 30px;
    padding-left: 0;
    margin: 0;
    list-style: none;

}

.menu-in ul li {
    margin: 25px;
    height: 32px;
    display: flex;
    align-items: center;
}

.menu-in ul li a {
    font-family: "Allerta Stencil", serif;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.menu-in ul li a svg {
    height: 32px;
    width: 32px;
    margin-right: 10px;
}

header svg {
    stroke: none;
}

.menu-in svg {
    stroke: var(--text-color);
    fill: var(--text-color);
}

.communication {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--base-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;


}

.communication svg {
    fill: none;
    width: 80%;
    height: 80%;
    stroke: var(--text-color);
}
@media screen and (max-width: 400px) {
    .menu {
        gap: 20px;
    }
}