﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #1e1e2f;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    text-align: center;
}

.container {
    max-width: 500px;
}

.error-code {
    font-size: 120px;
    font-weight: bold;
    color: #ff4c60;
}

.message {
    font-size: 24px;
    margin-bottom: 10px;
}

.description {
    color: #aaa;
    margin-bottom: 20px;
}

.home-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff4c60;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

    .home-btn:hover {
        background-color: #e04356;
    }
