@charset "utf-8";

.nav_menu {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 100px;
}

nav .nav_close {
    position: fixed;
    right: -1%;
    top: 100px;
    z-index: 20;
    cursor: pointer;
    transition: all 0.5s;
}


nav .nav_close:hover {
    right: 0%;
}

.real_menu {
    position: fixed;
    width: 400px;
    height: 500px;
    top: 100px;
    right: 0px;
    transition: all 1s;
}

.btn{
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
    cursor: pointer;

}
.open {
    right: -400px;

}

.real_menu img {
    position: relative;
}

.real_menu > ul {
    position: absolute;
    top: 110px;
    left: 0;
    width: 400px;
    height: 500px;
}


.real_menu > ul > li {
    position: relative;
    margin-left: 100px;
    font-family: "코버워치";
    color: white;
    font-size: 2em;
    margin-top: 35px;
    text-align: center;
    text-shadow: 1px 1px  1px black;

}

.real_menu > ul > li:hover{
        color: #adaaaa;

}

    
    

@media all and (max-width:767px) {

    nav .nav_close {
        transform: scale(0.8);
        right: -4%;
    }

    nav .nav_close:hover {
        right: -2.5%;
    }

    .real_menu {
        transform: scale(0.8);
        top: 61px;
        right: -40px;
    }

    .open {
        right: -400px;
    }
}

@media all and (max-width:500px) {

    nav .nav_close {
        transform: scale(0.5);
        right: -8.5%;
    }

    nav .nav_close:hover {
        right: -7.3%;
    }

    .real_menu {
        transform: scale(0.5);
        top: 1px;
        right: -100px;
    }

    .open {
        right: -400px;
    }

}


@media all and (max-width:360px) {

    nav .nav_close {
        transform: scale(0.5);
        right: -9.5%;
    }

    nav .nav_close:hover {
        right: -8.5%;
    }
}