.ubuntu-light {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.ubuntu-regular {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.ubuntu-medium {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.ubuntu-bold {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.ubuntu-light-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.ubuntu-regular-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.ubuntu-medium-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.ubuntu-bold-italic {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: italic;
}


html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: rgb(253, 253, 253);
    color: rgb(40, 45, 51);
}

body {
    font-size: 16px;
}


.app {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 0;
}

.app:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(back.jpg);
    pointer-events: none;
    opacity: 0.1;
}

img {
    max-width: 100%;
}
a {
    color: rgba(40, 45, 51, 1);
    font-weight: 300;
    font-size: 1em;
}
:root {
    --frame-gutter: 2rem;
}

section, .container {
    margin: 0 auto;
    width: min(60rem, calc(100vw - var(--frame-gutter)));
}

section.full-width {
    width: 100%;
}

footer {
    margin-top: 2em;
    padding: 2em 0;
    /*color: rgba(255, 255, 255, 1);*/
    /*background: rgba(40, 45, 51, 1);*/
    background: #faf7fd;
}

/*footer a {*/
/*    color: #fff;*/
/*}*/

footer .footer-info {
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 60%;
    margin: 3em auto;
    text-align: center;
    max-width: 28em;
}

footer .footer-contact p {
    font-size: 0.8rem;
    margin: 0 0 0.2em 0;
}

footer .footer-logo {
    position: relative;
    border-radius: 100%;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    padding: 0.5rem;
    border-width: 0;
    box-shadow: rgba(128, 128, 128, 0.4) 0 0.25rem 0.25rem, rgba(43, 43, 43, 0.3) 0 0.5rem 0.81rem -0.187rem, rgba(230, 230, 230, 1) 0 -0.32rem 0 inset;
    color: rgba(40, 45, 51, 1);
    -webkit-transition: box-shadow 0.15s, -webkit-transform 0.15s;
    transition: box-shadow 0.15s, transform 0.15s;
    white-space: nowrap;
    will-change: box-shadow, transform;
    background-image: radial-gradient(100% 100% at 100% 0, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 1) 100%);
    font-size: 8em;
    margin-bottom: 1rem;
}

@media (max-width: 1200px) {
    .container {
        padding-left: calc(var(--frame-gutter) / 2);
        padding-right: calc(var(--frame-gutter) / 2);
        width: auto;
    }
}