@font-face {
    font-family: 'OpenSans';
    src: url('/static/fonts/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 300 800;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/RobotoFlex-VariableFont_GRAD,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf') format('truetype');
    font-weight: 100 1000;
    font-style: normal;
}

@font-face {
    font-family: 'Lora';
    src: url('/static/fonts/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
}

:root {
    --tg-color: #0389d0;
    --text-font-weight: 400;
}

body {
    font-family: 'Lora', serif;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 40px;
    max-width: 800px;
    position: relative;
}


.btn.btn-primary {
    background: var(--tg-color);
    border-color: var(--tg-color);
    color: #fff;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}


#menuContent {
    user-select: none;
    width: 180px;
    position: absolute;
    z-index: 10;
    top: 30px;
    right: 20px;
    overflow-y: auto;
    display: none;
}

#menuButton {
    z-index: 200;
    cursor: pointer;
    user-select: none;
    color: #686868;
    font-size: 24px;
    line-height: 24px;
    margin-top: -2px;
}

.my-menu-active {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #555;
}

img.logo {
    max-height: 26px;
    width: auto;
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.0rem;
    }

}

.group-chat-how-to {
    max-width: 360px;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;

}

.group-chat-how-to img {
    max-width: 100%;
    margin: auto;
    display: block;
}


.iphone-demo-wrapper {
    max-width: 360px;
    display: block;
    margin: 40px auto auto auto;
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
}

.iphone-demo-wrapper img {
    max-width: 100%;
    margin: auto;
    display: block;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

img.group-chat {
    margin-top: 20px;
    max-width: 200px;
    display: block;
    margin-bottom: 40px;
    margin-left: 22px;
}

.top-margin {
    margin-top: 40px
}

.bottom-margin {
    margin-bottom: 20px
}

.menu .menu-item>a {
    color: #666;
    font-family: OpenSans;
    font-size: 16px;
    border-color: #eee;
    background-color: white;
}

.menu .menu-item>a:hover,
.menu .menu-item>a:active,
.menu .menu-item>a:focus {
    color: #666;
    background-color: #eee;
    border-color: #eee;
}

a.button-big {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    font-weight: 600;
    background-color: var(--tg-color);
    padding: 20px;
    height: 60px;
    color: white;
    border-radius: 4px;
}

a.button-big:hover {
    background-color: #02689f;
    text-decoration: none;

}