* {
    box-sizing:border-box;
    margin: 0; 
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.maintenance {
    background-color: antiquewhite;
    height: 100vh;
    display: grid;
    place-content: center;
}

.text-center { text-align: center; }

.fs-m{ font-size: 1.2rem; }
.fs-l{ font-size: 3rem; }
.fs-xl{ font-size: 5rem; }
.fs-xxl{ font-size: 12rem; }

.mt-5{ margin-top: 50px; }

.beeton {
    background-color: #f6c500;
    border-radius: 20px;
    font-weight: 500;
    padding: 10px 20px;
    text-decoration: none;
    color: black;
}

.d-flex{
    display: flex;
    align-items: center;
}

.image__404{
    height: 15rem;
    padding: 10px 0;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .fs-xxl{ font-size: 6rem; }
    .image__404{
        height: 10rem;
    }
}