h1, h2, h3, p {
    margin: 0;
}

@font-face {
    font-family: 'Clockmaker';
    src: url('../fonts/Clockmaker-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Clockmaker';
    src: url('../fonts/Clockmaker-SemiBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
    --cor-paleta1-principal: #013240;
    --cor-paleta1-secundaria: #95BBC4;
    --cor-paleta3-secundaria: #FBEFE5;
    --fonte-principal: 'Clockmaker', sans-serif;
}

html {
    background-color: var(--cor-paleta3-secundaria);
}

html, body {
    margin: 0;
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    flex-flow: column;
}

header {
    height: 45px;
    background-color: var(--cor-paleta1-principal);
    flex-shrink: 0;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.em-breve {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.em-breve > img {
    width: 336px;
    height: auto;

    @media only screen and (max-width: 320px) {
        width: 90%;
    }
}

.em-breve > h1 {
    font-family: var(--fonte-principal);
    width: auto;
    font-size: 42px;
    font-weight: bold;
    color: var(--cor-paleta1-principal);

    @media only screen and (max-width: 320px) {
        font-size: 32px;
    }
}

footer {
    background-color: var(--cor-paleta1-principal);
    color: var(--cor-paleta1-secundaria);
    font-family: var(--fonte-principal);
    padding: 15px 160px;
    display: flex;
    flex-flow: row;
    justify-content: space-between;

    @media only screen and (max-width: 644px) {
        padding: 5px;
        flex-flow: column;
        align-items: center;
        gap: 5px;
    }

    @media only screen and (max-width: 943px) {
        padding: 15px 20px;
    }
}

footer > p {
    margin: 0;
    font-size: 11px;
    text-decoration: underline;

    @media only screen and (max-width: 600px) {
        text-align: center;
    }
}