body{
    font-family: cooper,"Segoe UI",Arial,sans-serif;
}
.backimg{
    background-image: url(../image/2.png);
    background-size: cover;
    background-position: 50% 50%;
    position: fixed;    
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -10;
}
a{
    text-decoration: none;
    color: black;
}
#top{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    z-index: 10;
    width:100%;
    background-color: rgba(23, 58, 87, 0.5);
}
.title{
    flex: 1;
    float: left;
    font-size: 300%;
    height: 64px;
}
#topmargin{
    display: block;
    width: 100%;
    height:70px;
}
.main{
    color: white;
    text-align: center;
}
.nav{
    flex: 1;
}
.navlist{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
#navlist li{
    display: list-item;
    margin:0 1%;
    border: 1px rgb(0, 114, 134) solid;
    border-radius: 1px;
    text-align: center;
    list-style-type: none;
}
#navlist li:hover{
    background-color: #a16868;
}
#navlist li a{
    display: block;
    color: white;
    font-size: 20px;
    padding: 0px 16px;
}
.navimg_show_close{
    display:none;
    justify-content: flex-end;
}
.navimg_show_open{
    display:flex;
    justify-content: flex-end;
}
.menu_navlist{
    position: fixed;
    top: 70px;
    display: flex;
    flex-direction: column;
    background-color: rgb(88, 52, 27);
    width:50%;
    height:auto;
    justify-content: space-around;
    padding: 0;
    margin-block-start: 0;
}
.menu_navlist_open{
    left: 48%;
    animation: navlist_animation_open 0.5s;
}
.menu_navlist_close{
    left: 100%;
    animation: navlist_animation_close 0.5s;
}
@media only screen and (max-width: 769px){
    .navlist{
        display:none;
    }
    .navimg_show_open{
        display: flex;
    }
    #navlist li{
        margin: 1% 0;
    }
    #navlist li a{
        padding: 10px 16px;
    }
    .title a{
        display: block;
        margin-top: 9px;
    }
}
@media only screen and (min-width: 769px){
    .navimg_show_open{
        display: none;
    }
}
@keyframes navlist_animation_open{
    from{
        left: 100%;
    }
    to{
        left: 48%;
    }
}
@keyframes navlist_animation_close{
    from{
        left: 48%;
    }
    to{
        left: 100%;
    }
}
#imgurl{
    position: fixed;
    right:0;
    bottom:0;
    z-index:10;
}
#discordurl{
    position: fixed;
    left:0;
    bottom:0;
    z-index:10;
}
@media only screen and (max-width: 1460px){
    #imgurl{
        position: static;
        float: right;
    }
    #discordurl{
        position: static;
        float: left;
    }
}
@media only screen and (max-width: 768px){
    #imgurl,#discordurl{
        float: none;
        display: flex;
        justify-content: space-around;
    }
    .title{
        font-size: 250%;
    }
}