﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content {
    padding: 30px;
    background: red;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
}

.error-title {
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.error-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.home-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #fff;
    color: red;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

    .home-link:hover {
        background-color: #fff;
        box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        color:red;
    }
