/* 404 ERROR PAGE STYLES */
body.error-page {
    align-items: center;
    min-height: 100vh;
}

.error-container {
    display: flex;
    flex-direction: column;
    gap: var(--border-thickness);
    max-width: 600px;
    width: 100%;
}

.error-text {
    text-align: center;
}

.return-button {
    display: inline-block;
    background-color: var(--text-offwhite);
    padding: 8px 12px;
    text-decoration: none;
    color: black;
    border: var(--border-thickness) solid var(--bg-dark);
    transition: background 0.2s;
    font-family: 'ToshibaBody', monospace;
    font-size: 14px;
}

.return-button:hover {
    background-color: white;
}