* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    width: 350px;
}

.header .logo {
    width: 100px;
    margin-bottom: 20px;
}

.error-code {
    font-size: 72px;
    color: #e53935;
    margin-bottom: 10px;
}

.error-message {
    font-size: 24px;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.home-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.home-button:hover {
    background-color: #0056b3;
}

.technical-details {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

.technical-details p {
    margin-bottom: 5px;
}
