body {
    margin: 0;
    padding: 0;
    background-color: rgb(247, 250, 252);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    color: rgb(160, 174, 192);
}

.container {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    gap: 20px;
}

.error-code {
    font-size: 18px;
    font-weight: normal;
    padding-right: 20px;
    letter-spacing: 1px;
    position: relative; 
    display: flex;
    align-items: center; 
}

.error-code::after {
    content: "";
    position: absolute;
    right: 0;
    top: -5px; 
    bottom: -5px;
    width: 1px;
    background-color: #b0b4b88a;
}


.error-text {
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
}
