/* Estilos padrão */
@import url('variables.css');

body {
    text-align: center;
    background-color: var(--background-color);
}

.container-404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

h1 {
    font-size: 48px;
    color: var(--text-strong);
}

p {
    font-size: 18px;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--text-strong);
    font-weight: bold;
}