body,
html {
    margin: 0;
    padding: 0;
    font-family: Roboto, "Helvetica Neue", sans-serif;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #e5f7ff;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#statusContainer {
    position: absolute;
    top: 30%;
    bottom: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    height: -moz-fit-content;
    max-width: 480px;
    margin: 0 1rem;
    background-color: #e1f6fe;
    border-radius: 0.6rem;
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.32);
    text-align: center;
    animation: fadeIn ease 0.7s;
}

.status-title {
    font-weight: 300;
    font-size: xx-large;
    margin: 1rem;
}

@media screen and (max-width: 400px) {
    .status-title {
        font-size: x-large;
    }
}

.status-title-large {
    font-weight: 300;
    font-size: xx-large;
    margin: 1rem;
}

.status-code-title {
    font-weight: 400;
    font-size: 4rem;
    letter-spacing: 0.2rem;
    margin: 1rem;
    color: #1f1f1f;
}

.status-subtitle {
    font-size: medium;
    margin: 1rem;
}

.dark-fill {
    fill: #1f1f1f;
}

.icon {
    position: relative;
    top: 3px;
    bottom: 0;
    margin: 0 6px;
}

.card-body {
    padding: 1rem;
}

.card-footer {
    height: 2rem;
    border-radius: 0 0 0.6rem 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f1f1f;
    width: 100%;
    color: #dfdfdf;
    padding: 4px 0;
    font-size: 0.9rem;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 36px;
    background-color: #1f1f1f;
    color: #dfdfdf;
}

#footerBox {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: inherit;
    padding: 0 12px;
}

.footer-info-block {
    font-size: small;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-info-block p {
    margin: 0;
}

.field-value {
    max-width: 50vw;
    font-weight: 600;
    font-family: 'Courier New', Courier, monospace;
    margin-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

a:visited,
a {
    color: #99d7ff;
}