html {
    font-family: "AnimeAce";
}
body {
    display: block;
    margin: 0;
}

#Main_Container{
    overflow: hidden;
    min-width: 100vw;
    min-height: 100vh;
    background: #268DF4;
    background: linear-gradient(0deg, rgba(38, 141, 244, 1) 12%, rgba(122, 210, 248, 1) 34%, rgba(153, 221, 242, 1) 49%, rgba(187, 232, 235, 1) 63%, rgba(70, 156, 241, 1) 90%);
}

#Map img {
    position: fixed;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

#MapPhone{
    opacity: 0%;
}

#MapPhone img{
    position: fixed;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

#MapPhone svg{
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100%;
}

#Border{
    position: fixed;
    width: 100vw;
    z-index: 1;
    bottom: -3%;
}

#Clouds1{
    position: fixed;
    width: 100vw;
    z-index: 1;
    top: -3%;
}

#Clouds2{
    position: fixed;
    width: 100vw;
    z-index: 1;
    bottom: -7%;
    opacity: 0%;
    transform: scaleX(-1);
}

#Pathway{
    position: absolute;
    width: 95%;
    height: 8%;
    top: 6%;
    min-width: 95%;
}

#Luffy{
    position: fixed;
    width: 7%;
    height: 18%;
    top: 1%;
    left: 0%;
    z-index: 5;
}

.InfoWindow{
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    border-radius: 30px;
    width: 90vw;
    height: 90vh;
    transform: translate(-50%, -50%);
    background: #ebebeb;
    background: linear-gradient(45deg, rgba(235, 235, 235, 1) 0%, rgba(235, 235, 204, 1) 100%);
    border: 10px solid rgb(68, 68, 67);
    z-index: -3;
    padding: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.content{
    width: 100%;
    height: fit-content;
    background-color: aliceblue;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.8;
    padding: 20px;
    text-align: left;
    box-sizing: border-box;
}

.ImgContent{
    width: 90%;
    height: 90%;
    border: 10px solid black;
}

.title{
    background-color: rgb(130, 154, 175);
    border-radius: 10px;
    font-size: 40px;
    margin-top: 8%;
    font-style: italic;
    padding: 15px;
    text-align: justify;
}

.close{
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    cursor: pointer;
}

.Back{
    position: fixed;
    z-index: -3;
    bottom: 6%;
    left: 2%;
    width: 100px;
    height: 75px;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
}

.Next{
    position: fixed;
    z-index: -3;
    bottom: 6%;
    right: 3%;
    width: 100px;
    height: 75px;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    transform: scaleX(-1);
}

.InfoWindow.show{
    z-index: 4;
}

.Next.show{
    z-index: 4;
}

.Back.show{
    z-index: 4;
}

#LangBtn{
    position: fixed;
    z-index: 5;
    width: 114px;
    height: 50px;
    left: 0;
    top: 0%;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    cursor: pointer;
}

#LangIcon{
    z-index: 5;
    width: 100px;
    height: 42px;
}

@media screen and (max-width: 800px)  {
    #Map{
        opacity: 0%;
    }
    
    #MapPhone{
        opacity: 100%;
        position: fixed;
        top: 56%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        z-index: 2;
    }

    #Clouds2{  
        opacity: 100%;
    }

    #Border{
    opacity: 0%;
    }

    #Pathway{
        opacity: 0%;
    }

    #Luffy{
        opacity: 0%;
    }

    .title{
        font-size: 25px;
        text-align: center;
        margin-top: 25%;
    }

    .content{
         font-size: 14px;
         min-height: 30%;
    }

    .Next{
        border-radius: 10px;
        width: 65px;
        height: 65px;
        bottom: 1%;
    }

    .Back{
        border-radius: 10px;
        width: 65px;
        height: 65px;
        bottom: 1%;
    }

    .ImgContent{
        width: 100%;
    }
}

