@charset "utf-8";
/* CSS Document */
@media (max-width: 375px){
}

/*lock*/
body {
    line-height:1;
    margin:0;
}
header{
    text-align: center;
}
img {
    max-width: 90%;
    height:auto;
}
nav{
    top: 25px;
    text-align: center;
    height: 50px;
}
.button {
    display:inline;
    width: 200px;
    padding: 10px 10px;
    border: 1px solid #fdd0fd;
    background-color: #ffb9ff;
    background-image: -webkit-linear-gradient(top, #ffb9ff, #ffc9ff);
    background-image: linear-gradient(to bottom, #ffb9ff, #ffc9ff);
    border-radius: 4px;
    color: #7B7B7B;
    line-height: 50px;
    text-shadow: 0 1px 0px #ffffff;
    margin-left: auto;
    margin-right: auto;
    font-weight:bold;
}
.button:hover {
    border:1px solid #fed6fe;
    background-color: #ffb3ff;
    background-image: -webkit-linear-gradient(top, #ffb3ff, #ff9fff);
    background-image: linear-gradient(to bottom, #ffb3ff, #ff9fff);
}
.button:active {
    background: #ff9fff;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
    color: #ff8eff;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}
#footer{
    position: relative;
    top: 10px;
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    text-align: center;
}