* {
    background: white;
}
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    font-family: 'Rubik', sans-serif;
}
#main-body-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 6rem;
    gap: 12px;
    box-sizing: border-box;
}
#error-img {
    max-width: 500px;
    height: auto;
}
#error-heading, #error-description {
    background: white;
    color: black;
}
#error-heading {
    font-weight: 300;
    font-size: 2.25rem;
    line-height: 45px;
}
#error-description {
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    max-width: 665px;
    text-align: center;
}
#button-container {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

button {
    direction: ltr;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    padding: 0 1.5rem;
    height: 40px;
    min-width: 96px;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 100ms cubic-bezier(0, 0, 0.39, 1)
}

#lined-button {
    background: transparent;
    border: 1px solid #006DE9;
    color: #006DE9;
}

#lined-button:hover {
    background: #006DE9;
    color: white;
}

#filled-button {
    background: #006DE9;
    border: 1px solid #006DE9;
    color: white;
}

#filled-button:hover {
    background: #004CD6;
}

@media (max-width: 768px) {
    #error-heading {
        font-size: 1.75rem;
    }

    #error-img {
        width: 300px;
    }

    #main-body-container{
        gap: 8px;
    }

    #error-description {
        font-size: 0.875rem;
        max-width: 80%;
    }

    #lined-button, #filled-button {
        font-size: 0.875rem;
        padding: 8px 16px;
    }
}
