@font-face {
    font-family: 'Montserrat Bold';
    src:
        local('Montserrat Bold'),
        local('Montserrat-Bold'),
        url('../fonts/Montserrat-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    src:
        local('Montserrat'),
        local('Montserrat-Regular'),
        url('../fonts/Montserrat-Regular.woff2') format('woff2');
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    background: #e9e9e9;
    user-select: none;
    overflow: hidden;
}

p {
    margin: 0;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.background {
    position: absolute;
    top: 0;
    min-height: 100%;
    max-height: 100%;
    min-width: 100%;
    width: auto;
}

.logo {
    position: absolute;
    top: 4rem;
}

.maintenanceImage {
    display: block;
    margin-bottom: 1rem;
    width: 320px;
    max-width: 80%;
}

.maintenanceMsg {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    text-align: center;
    color: #000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 600px;
    max-width: 80%;
    height: fit-content;
    padding: 10px;
    border-radius: 15px;
}

.msgTitle {
    font-family: "Montserrat Bold", sans-serif;
    text-align: center;
    background: linear-gradient(180deg, #EDFF1C 0%, #46F872 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.msgBody {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
}

.break {
    display: none;
}

@media screen and (min-width: 1024px) {
    .break {
        display: initial;
    }

    .msgBody {
        font-weight: 500;
    }
}

.logo, .maintenanceImage, .maintenanceMsg {
    z-index: 2;
}