body {
    background-color: #f4f2ff;
    font-family: Arial, sans-serif;
}

header {
    height: 64px;
    display: flex;
    align-items: center;
    z-index: 50;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    max-width: 100vw;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.navbar-brand {
    position: absolute;
    left: 16px;
    top: 50%;
    height: 36px;
    transform: translateY(-50%);
}

.navbar-brand img {
    display: block;
    height: 36px;
    width: auto;
}

@media (max-width: 768px) {
    .navbar-brand {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.content {
    margin-top: 48px;
}

.maintenance-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 576px) {
    .maintenance-img {
        max-height: 180px;
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .maintenance-img {
        max-height: 300px;
    }
}

@media (min-width: 1400px) {
    .maintenance-img {
        max-height: 100%;
    }
}

p {
    color: gray;
    font-size: 18px;
    line-height: 16px;
}

:root {
    --bs-primary: #4730FF;
    --bs-primary-rgb: 71, 48, 255;
}

.btn-primary {
    background-color: #4730FF;
    border-color: #4730FF;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #3b26e6;
    border-color: #3b26e6;
}

.btn-primary:active {
    background-color: #2f1fd6;
    border-color: #2f1fd6;
}