/**
* main style 
*/
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}
body {
    background-image: url(../img/chalkboard.png);
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}

h1 {
    color: rgb(212, 206, 206);
}
.title {
    margin: 10px 20px;
}
nav {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
nav div {
    width: 60%;
}
nav span {
    padding: 0 10px;
    margin: auto 20px;
    border: solid 1px;
}

#contents {
   flex: 1;
   display: flex;
   flex-flow: column;
}

#edit_area {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 940px;
    margin: 1px auto 0;
}

/* map */
#map_title{
    left: 630px;
    font-size: 50px;
}

#map-container > canvas {
    border-color: rgb(124, 100, 100) !important;
    border-radius: 3px;
    border-width: 8px !important;
    box-shadow: 1px 2px 3px rgba(230, 216, 216, 0.877);
}


/*right column*/
#s_column {
    width:200px;
    padding: 20px;
    border-radius:5px;
    height: 440px;
    margin: 10px 20px 0 20px;
}

#selected_text {
    text-align: center;
    margin-bottom: 10px;
}
#s_column .current-color {
    margin-bottom: 30px;
    margin-left: 35px;
    width: 130px;
    height: 130px;
    border-radius: 100%;
    border: 1px solid #113ab4;
    display: block;
    font-size:0;
    cursor: pointer;
    background-color: #82c7c7;
    box-shadow: 3px 3px 6px 1px #555,
                2px 2px 2px rgba(216, 205, 205, 0.863) inset;
}

#changes,#image_download{
    margin-left: 22px;
    width:200px;
}
#changes > div {
    margin-bottom: 10px;
    font-size:10px;
}
#changes input {
    margin-right: 3px;
}
.map-background-color,.default-prefecture-color {
    width: 50px;
    cursor: pointer;
}

#image_download select {
    margin-left:5px;
    padding: 2px 4px;
    cursor: pointer;
}

#file_name {
    width: 150px;
}
#file_name_label {
    text-align: left;
}
.input_box {
    border-radius: 3px;
}

#comments {
    width: 940px;
    margin: 0 auto 20px;
}

#download {
    width: 135px;
    margin-top: 5px;
    display: inline-block;
    text-align: center;
}

.btn {
    border:1px solid #000000;
    border-radius:15px;
    cursor: pointer;
    box-shadow: 0px 2px 2px rgba(230, 216, 216, 0.699);
    background-color: #f16b42ea;
    padding: 5px 10px;
    font-size:13px;
    color: #313030;
    transition: all .3s;
    position: relative;
    font-weight: 500;
    top: 0px;
}
.btn:hover {
    top:-1px;
    box-shadow: 2px 2px 3px rgba(250, 250, 250, 0.904);
}

.btn:active {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    box-shadow: 0px 1px 2px rgba(255, 255, 255, 0.877);
    top: 0px;
}

label {
    font-size:14px;
}
p,div,label,h2{
    color:rgb(212, 206, 206); 
}

/*footer*/
footer {
    min-height: 50px;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

