body{
    min-height: 100vh;
    background-color: #152430;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

#header{
    margin: 2rem;
    max-width: 300px;
}
#header img{
    width: 100%;
}

#content{
    background-color: white;
    border-radius: 15px;
    padding: 2rem 4rem;
    width: 75%;
    max-width: 600px;
}
@media (max-width: 510px) {
    #content {
        width: 100%;
        border-radius: 0;
    }
}
#content h1{
    font-size: 1.5rem;
    font-weight: bold;
}
#content blockquote{
    font-style: italic;
}
#content svg{
    height: 100px;
    margin-bottom: 2rem;
    fill: #152430;
}

.jade_button{
    border: #2ec99b 2px solid;
    border-radius: 50px !important;
    background-color: #2ec99b;
    color: #152430;
    padding: 0.5rem;
    font-weight: bold;
    width: 100%;
    margin-top: 1rem;

    &:hover,
    &:focus-visible {
        background-color: #26a680;
        border: #152430 2px solid;
    }

    &:disabled {
        background-color: var(--la-gray--lightest) !important;
        border: 1px solid var(--la-gray--lightest) !important;
        color: var(--la-gray--disabled) !important;
        cursor: default !important;
    }
}

#footer{
    padding: 1rem;
    color: white;
    font-size: 12px;
}