
@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

*::-webkit-scrollbar {
    -webkit-appearance: none;
}

*::-webkit-scrollbar:vertical {
    width:10px;
}

*::-webkit-scrollbar-button:increment,*::-webkit-scrollbar-button {
    display: none;
}

*::-webkit-scrollbar:horizontal {
    height: 10px;
}

*::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

*::-webkit-scrollbar-track {
    border-radius: 10px;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: white;
    color: #253037;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
}

.error-screen-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    gap: 24px;
}

.error-screen-image {
    height: auto;
}

.error-screen-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    color: #333;
}

.error-screen-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0px 16px;
    margin-top: 16px;
    color: #333;
}