*:after {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "poppins", serif;
}

.header {
    background: #8b2ed3;
    background: linear-gradient(45deg, #8b2ed3 0%, rgba(255, 0, 0, 0.6853116246) 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.hambergur {
    width: 1.6rem;
}
.hambergur div {
    width: 1.6rem;
    height: 2px;
    border: 1px solid #fff;
    margin-bottom: 5px;
    border-radius: 5px;
}
.hambergur div:nth-child(2) {
    width: 1.3rem;
    background: #fff;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    padding: 1rem;
}
@media (min-width: 720px) {
    .container {
        padding: 0.5rem 2rem;
    }
}

.fullscreen {
    -webkit-clip-path: circle(0% at 96.5% 4%);
    clip-path: circle(0% at 96.5% 4%);
    position: absolute;
    background: #1e1f25;
    width: 100%;
    height: 60vh;
    top: 0;
    left: 0;
    transition: all 0.5s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}
.fullscreen ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 60vh;
}
.fullscreen ul li {
    padding: 0.5rem 1rem;
}
.fullscreen ul li a {
    font-size: 1.5rem;
    background: -webkit-linear-gradient(45deg, #b68fd5 0%, rgba(255, 174, 174, 0.6853116246) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fullscreen .close {
    position: absolute;
    top: 1.3rem;
    right: 2.355rem;
    width: 2rem;
    height: 2rem;
    transform: rotate(45deg);
}
.fullscreen .close div {
    width: 32px;
    height: 32px;
    overflow: hidden;
}
.fullscreen .close div:before, .fullscreen .close div:after {
    content: "";
    width: 2rem;
    height: 2px;
    border: 1px solid red;
    position: absolute;
    border-radius: 5px;
}
.fullscreen .close div:after {
    transform: rotate(90deg);
    background: red;
}
.fullscreen.active {
    -webkit-clip-path: circle(140% at 96.5% 4%);
    clip-path: circle(140% at 96.5% 4%);
    transition: all 0.7s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}
.fullscreen.active ul > li {
    -webkit-animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
    animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
}
.fullscreen.reverse_anim {
    -webkit-clip-path: circle(0% at 96.5% 4%);
    clip-path: circle(0% at 96.5% 4%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}

@-webkit-keyframes animateIn {
    0% {
        opacity: 0;
        transform: translateX(10px) rotate(2deg);
    }
    100% {
        opacity: 1;
    }
}

@keyframes animateIn {
    0% {
        opacity: 0;
        transform: translateX(10px) rotate(2deg);
    }
    100% {
        opacity: 1;
    }
}
.logo a {
    color: #fff;
    font-size: 1.2rem;
}