body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #111;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    max-width: 400px;
}

.error-icon {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 20px;
}

.line {
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: red;
    border-radius: 5px;
    top: 50%;
    left: 0;
    transition: transform 0.3s ease-in-out;
}

.line1 {
    transform: rotate(45deg);
}

.line2 {
    transform: rotate(-45deg);
}

h1 {
    font-size: 60px;
    margin: 0;
}

p {
    font-size: 18px;
    margin: 10px 0 20px;
}

.home-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: red;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.home-button:hover {
    background-color: darkred;
}