body {
    background: #f0f0f0;
    font-family: 'Roboto Slab', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.page-content {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    height: 60vh;
}
@media (max-width: 768px) {
    .error {
        font-size: 0.7em;
    }
}
.error-title {
    text-align: center;
    font-family: 'Roboto Slab', sans-serif;
    font-size: 4em;
    color: #ff3c3c;
    margin: 0 0 10px 0;
    padding: 0;
}
.error-message {
    text-align: center;
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1.5em;
    color: #ff3c3c;
    margin: 0 0 50px 0;
    padding: 0;
}
.error .cta-button {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 1em;
    color: #fff;
    background-color: #ff3c3c;
    border: 2px solid #ff3c3c;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: color 300ms ease, background-color 300ms ease;
}
.error .cta-button:hover {
    background-color: transparent;
    color: #ff3c3c;
}