:root {
    --c-background: #EFEBE7;
    --c-white: #ffffff;
    --tablet-breakpoint: 1200px;
    --mobile-breakpoint: 800px;
}

html {
    font-family: Arimo, sans-serif;
}

body {
    margin: 0;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

@media only screen and (max-width: 800px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}

.hero {
    background-color: var(--c-background);
    color: #000000;
}

.manifesto {
    padding: 200px 140px;
    background-color: var(--c-background);
    color: #000000;
}

.manifesto .logo-message {
    margin-bottom: 24px;
}

.manifesto__content {
    line-height: 79px;
}
