html {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url(images/bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#title {
    text-align: left;
    font-family: "Galada", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    background-color: #222;
}

#title > h1 {
    margin: 0 0 0 0.5em;
    color: #f9f9f9;
}

#header {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(10, 10, 10, 0.5);
    padding: 0.5em 1.5em 0.5em 1.5em;
    text-align: center;
    border-radius: 10px;
    border-style: dashed;
    border-width: 1px;
    color: #eee;
}

#header > p {
    font-family: "Galada", cursive;
    font-weight: 400;
    font-size: 4em;
    margin: 0;
}

@media (max-width: 600px) {
    #header > p {
        font-size: 2em;
    }
}

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button {
    font-family: "Galada", cursive;
    -moz-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out;
    -webkit-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out;
    -ms-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out;
    transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out;
    -webkit-appearance: none;
    position: relative;
    display: inline-block;
    border: 0;
    background: #35b88f;
    color: #fff;
    text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25);
    cursor: pointer;
    text-decoration: none;
    outline: 0;
    padding: 1em 3em 1em 3em;
    text-align: center;
    border-radius: 3em;
    font-weight: 400;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover {
    background: #45c89f;
}

input[type="button"].style2,
input[type="submit"].style2,
input[type="reset"].style2,
button.style2,
.button.style2 {
    color: #3a3939;
    background: #fff;
    box-shadow: inset 0 0 0 1px #fff;
}

input[type="button"].style2:hover,
input[type="submit"].style2:hover,
input[type="reset"].style2:hover,
button.style2:hover,
.button.style2:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #fff !important;
    text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.25) !important;
}

#refresh {
    position: absolute;
    right: 1em;
    bottom: 1em;
}
