@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;600;700&display=swap");

:root {
    --color-background: #ed7162;
    --color-dark-grey: #4e4e4d;
    --color-white: #fff;
}

* {
    border: 0;
    box-sizing: border-box;
    line-height: 1;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    height: 100%;
}

body {
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

#main-wrapper {
    width: 100%;
}

#content-wrapper {
    flex-grow: 1;
    overflow-x: hidden;
    overflow-y: auto;
}

#under-construction-wrapper {
    width: 100%;
    min-height: 100%;
    align-items: center;
    background-color: var(--color-background);
    display: flex;
    justify-content: center;
}

#under-construction-holder {
    width: 100%;
    max-width: 850px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    font-size: 16px;
    gap: 40px;
    line-height: 1.125;
    padding: 50px 30px;
    text-align: center;
}

#vera-logo {
    width: 257px;
    margin-bottom: 20px;
}

#powered-by {
    width: 67px;
}

#construction {
    width: 189px;
}

#under-construction-holder a {
    color: var(--color-white);
    font-weight: 700;
    text-decoration: none;
}

#footer {
    width: 100%;
    align-items: center;
    background-color: var(--color-white);
    color: var(--color-dark-grey);
    display: flex;
    flex-shrink: 0;
    font-weight: 300;
    justify-content: center;
    padding: 20px 0;
}

@media (min-height: 780px) {
    #main-wrapper {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .desktop-break {
        display: block;
    }

    #under-construction-holder {
        font-size: 25px;
        gap: 70px;
        line-height: 1.16;
    }

    #vera-logo {
        width: 389px;
    }

    #powered-by {
        width: 83px;
    }

    #construction {
        width: 253px;
    }
}
