/* Funeral Gothic Theme */
@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook&display=swap');

body {
    background-color: #000;
    color: #fff;
    font-family: 'UnifrakturCook', cursive, serif;
    margin: 0;
    padding: 2rem;
    font-size: 1.25rem;
    line-height: 2;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'UnifrakturCook', cursive, serif;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.3);
}

a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed #fff;
}

a:hover {
    color: #ccc;
    border-bottom: 1px dashed #ccc;
}

button, input[type="submit"] {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.5rem 1rem;
    font-family: 'UnifrakturCook', cursive, serif;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    background-color: #fff;
    color: #000;
}

form {
    background-color: #111;
    border: 1px solid #fff;
    padding: 4rem;
    max-width: 400px;
    margin: 2rem auto;
    border-radius: 5px;
    text-align: center;
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    background-color: #222;
    border: 1px solid #fff;
    color: #fff;
}

::placeholder {
    color: #ccc;
    font-family: 'UnifrakturCook', cursive, serif;
}

input:focus {
    outline: none;
    border-color: #ccc;
}

.container {
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

.boxed {
    background-color: #222;
    padding: 0.2rem 0.4rem;
    border: 1px solid #fff;
    border-radius: 3px;
}
