/*
    Theme Name: Inoperante Theme
    Theme ID: 0002
    Theme URI: https://espaco.pro
    Author: Douglas Oliveira
    Author URI: https://perfildoug.espaco.pro
    Description: Inoperante Theme is a custom WordPress generic theme designed. It features a modern and responsive design, optimized for performance and accessibility.
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: light, responsive-layout, accessibility-ready
    Text Domain: inoperante
*/

*, *::before, *::after,
html, body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    overflow: hidden;
    line-height: 1.2;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

main.inoperante,
main#error {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
}

main.inoperante section > div,
main#error section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

a.link {
    color: #012970;
    text-decoration: none;
}

a.link:hover {
    text-decoration: underline;
}

a.button {
    display: inline-block;
    padding: 20px;
    margin: 20px auto;
    width: 100%;
    background: #012970;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: all .2s ease-in-out;
    font-size: 16px;
    font-weight: 600;
}

a.button:hover {
    background: #000000;
}

@media(min-width: 767px){
    a.button {
        width: fit-content;
        padding: 10px 20px;
        letter-spacing: 1px;
    }
}

img {
    display: block;
    width: 100%;
    max-width: 100px;
    height: auto;
    margin: 0 auto;
}

h1, h2, p {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
}

h1 {
    font-size: 30px;
    color: #012970;
}

h2 {
    font-size: 20px;
    color: #666666;
}

p {
    font-size: 16px;
    color: #999999;
}

footer a {
    font-size: 16px;
    color: #012970 !important;
}