* {
    transition: .2s;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html, body {
    height: 100%;
    background-size: cover;
}

main {
    padding-top: 70vh;
	max-width: 400px;
	margin: auto;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h1 {
    text-align: center;
    padding: 2rem 0;
    cursor: pointer;
    color: #fff;
    text-shadow:
        2px 2px 4px rgba(0,0,0,.6), 
        -2px -2px 4px rgba(0,0,0,.6),
        -2px 2px 4px rgba(0,0,0,.6),
        2px -2px 4px rgba(0,0,0,.6);
}

h1:hover {
    transform: scale(96%);
}

button {
    float: left;
    width: 48%;
    text-align: center;
    background-color: #333;
    color: #f7f7f7;
    border: 2px solid #333;
    border-radius: 0;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
} button:hover {
    color: #222;
    background-color: #fff;
}

input {
    float: right;
    width: 48%;
    outline: none;
    padding: 0.4rem 0.8rem;
    border-radius: 0;
    border: 2px solid #333;
    user-select: initial;
} input::selection {
    background-color: #333;
    color: #fff;
}

.load-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,.4);
}

.load-ico {
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
}

.spin {
    animation-name: spin;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes spin {
    0% { transform: translate(50%, 50%) rotate(0deg) }
    50% { transform: translate(50%, 50%) rotate(180deg); }
    100% { transform: translate(50%, 50%) rotate(360deg); }
}

.d-none {
    display: none;
}

.manga {
    font-family: "Segoe UI";
    font-weight: 600;

    margin-top: 3rem;
    bottom: 0;
    font-size: 1.6rem;
    text-align: center;
    color: #fff;
    text-shadow:
        2px 2px 4px rgba(0,0,0,.6), 
        -2px -2px 4px rgba(0,0,0,.6),
        -2px 2px 4px rgba(0,0,0,.6),
        2px -2px 4px rgba(0,0,0,.6);
}

.manga a {
    color: #fff;
    display: inline-block;
} .manga a:hover {
    transform: scale(110%);
}