.page-404 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Titillium Web', sans-serif;
    padding: 2rem;
    color: #ffffff;
}

.page-404 h1 {
    font-size: 6rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.page-404 p {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #ffffff;
}

.page-404 .btn-home {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    background-color: #111;
    border: 2px solid red;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.page-404 .btn-home:hover {
    background-color: red;
    color: white;
    transform: translateY(-2px);
}