@font-face {
    font-family: 'BarberChop';
    src: url('BarberChop.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FranklinGothic';
    src: url('OPTIFranklinGothic-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FFB26A;
}

.container {
    display: flex;
    flex-flow: column;
    justify-content: center;
    flex-grow: 1;
    height: 80%;
    border-radius: 10px;
    margin: 0 10%;
    align-items: stretch;
}

.logo {
    display: flex;
    flex-grow: 2;
    background-image: url(logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 10%;
}

.text {
    display: flex;
    flex-direction: column;
    font-family: 'FranklinGothic', sans-serif;
    text-align: center;
    padding: 10px;
    color: #cf3200;
    font-size: 1em;
    container-name: text;
}

.text.block {
    flex-grow: 1.1;
}

h1 {
    font-family: "BarberChop", sans-serif;
}

@media (min-width: 800px) {
    .text {
        font-size: 1.5em;
    }
}