/**
 * Theme Name:  apptheme
 * Author: Rainjeck
 * Author URI:  https://github.com/rainjeck/wordpress
 * License:     GNU General Public License v2 or later
 * Version:     1.0.0
 * Text Domain: tnwpt
*/


.bSeotxt a {
	color: #feeb34;
	text-decoration: none;
	transition: color 0.2s ease, text-decoration 0.2s ease;
}

.error-404 {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    text-align: center;
    font-family: inherit;
    background-color: transparent;
}

.error-404 h1 {
    font-size: 64px;
    margin: 0 0 15px;
    color: #feeb34;
}

.error-404 p {
    line-height: 1.5;
    margin: 0 0 25px;
    color: inherit;
}

.error-404 div {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.error-404 .btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #111111;
    background-color: #feeb34;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.error-404 .btn:hover {
    opacity: 0.9;
}

.error-404 .btn-secondary {
    color: #ffffff;
    background-color: #fd4995;
}