:root {
    --container-width: 1320px;
    --header-height: calc((var(--container-width) - 24px) * 0.9 / 3 * (550 / 750) + 20px);
    --body-height: calc(95vh - var(--header-height))
}

.header-bar {
    position: relative;
    height: var(--header-height);
    border-bottom: none;
    padding-top: 20px;
    /* padding-bottom: 25px; */
    border: 0;
    font-size: 16px;
    margin-top: 10px;
}

.header-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.logo-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.logo-container .logo {
    border-radius: 50%;
    width: 80%;
    float: left;
    margin: 0px 10px;
}

.logo-container .logo img {
    width: 90%;
}

.status-page-content {
    margin-top: 30px;
    margin-left: 0px;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    :root {
        --container-width: 1140px;
    }

    .logo-container .logo img {
        width: 90%;
    }
}

@media (max-width: 1199px) {
    :root {
        --container-width: 960px;
    }

    .logo-container .logo img {
        width: 90%;
    }
}

@media (max-width: 991px) {
    .header-bar {
        padding-top: 10px;
    }

    .logo-container .logo img {
        width: 90%;
    }
}

@media (max-width: 767px) {
    :root {
        --container-width: 540px;
    }

    .logo-container .logo img {
        width: 90%;
    }

    .logo-container .logo {
        margin-left: 20px;
    }

    .status-page-content {
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    :root {
        --container-width: 100vw;
    }

    .header-bar {
        position: relative;
    }

    .logo-container .logo img {
        width: 90%;
    }

    .status-page-content {
        margin-top: 0px;
        height: var(--body-height);
        display: flex;
        flex-wrap: wrap;
        align-content: space-around;
        padding-bottom: calc(var(--body-height)* 0.5);
        position: fixed;
        top: 50%;
        transform: translateY(-35%);
    }

    .h1,
    h1 {
        font-size: 30px;
    }

    .h4,
    h4 {
        font-size: 24px;
    }

    .contact-icons {
        top: unset;
        transform: unset;
        bottom: 2vh;
        gap: 2vh;
    }

    .icon-img {
        height: 6vh;
        width: auto;
    }
}

@media (max-width: 450px) {
    .contact-icons {
        top: unset;
        transform: unset;
        bottom: 2vh;
        gap: 1vh;
    }

    .icon-img {
        height: 4vh;
        width: auto;
    }

    .logo-container .logo img {
        width: 90%;
    }
}

@media (max-width: 380px) {

    :root {
        --body-height: calc(100vh - var(--header-height))
    }

    .h1,
    h1 {
        font-size: 28px;
    }

    .h4,
    h4 {
        font-size: 22px;
    }

    .logo-container .logo img {
        width: 90%;
    }
}