* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url(./img/4839864.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position:center;

    overflow: hidden;
    color: #fff;
}

header {
    height: 80px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: transparent;
}

header .logo {
    position: fixed;
    left: 3%;
    text-align: center;
    box-shadow: 0px 0px 10px -2px #fff;
    padding: 3.5px;
    border-radius: 10px;
}

.hidde {
    transition: all 1.4s ease;
    clip-path: circle(0% at 96.2% 30px);
}

.show {
    transition: all 1.4s ease;
    clip-path: circle(150% at 0 0);
}

.menu-icon {
    width: 35px;
    height: 35px;
    position: fixed;
    right: 3%;
    background-color: transparent;
    border-radius: 10px;
    border: 0;
    box-shadow: 0px 0px 11px -2px #fff;
    cursor: pointer;
    transition: 1s ease, outline 0.5s ease;
    outline: 1px solid #ffffff00;
}

.menu-icon:hover {
    outline: 1px solid #fff;
}


.up-line {
    width: 17px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -100%);
    transition: all 1s ease;
}

.center-line {
    width: 13px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 26%;
    transform: translate(0, -50%);
    transition: all 1s ease;
}

.down-line {
    width: 9px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 65%;
    left: 26%;
    transition: all 1s ease;
}

.up-line.open {
    width: 20px;
    height: 1px;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(225deg);
    top: 50%;
    left: 50%;
}

.center-line.open {
    width: 20px;
    height: 1px;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(-225deg);
    top: 50%;
    left: 50%;
}

.down-line.open {
    opacity: 0;
    width: 0;
}

.menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100dvh;
    color: #fff;
    backdrop-filter: blur(18px) brightness(0.4);
    -webkit-backdrop-filter: blur(15px) brightness(0.5);
}

.menu-content {
    position: absolute;
    bottom: 50%;
    right: 52%;
    translate: 50% 50%;
}


.menu-content ul li {
    margin: 40px;
    padding: 3px;
    font-size: 30px;
    font-weight: 900;
    width: 100%;
    transition: all 1s ease;
    cursor: pointer;
    list-style: none;
    text-align: center;
}

.menu-content ul li:hover {
    font-size: 35px;
    font-weight: 1000;
}



.menu-content #home {
    transform: translate(0, 75vw);
    transition-delay: 1ms;
}

.menu-content #about {
    transform: translate(0, 75vw);
    transition-delay: 70ms;
    ;
}

.menu-content #content {
    transform: translate(0, 75vw);
    transition-delay: 120ms;
}

.menu-content #more {
    transform: translate(0, 75vw);
    transition-delay: 170ms;
}


#home.jump,
#about.jump,
#content.jump,
#more.jump {
    transform: translate(0px, 0);
}


@media only screen and (min-width: 300px) and (max-width: 600px) {
  body{
    font-size: 15px;
  }
  .menu-content ul li{
    font-size: 20px;
    font-weight: 700;
  }
  .menu-content {
    position: absolute;
    bottom: 50%;
    right: 60%;
    translate: 50% 50%;
}
}