@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    src: url(/static/fonts/OpenSans/OpenSans-Regular.ttf);
}

body {
    position: relative;
    padding: 0.01px; /* to fix margin collapsing of inner elements */
    min-width: 304px;
    min-height: 100vh;
}
a, a:focus {
   outline: none; /* to fix dotted outline after clicking link (for example - menu element) */
}

nav {
    height: 60px;
}
.navbar-header {
    width: 100%;
    line-height: 0.5;
}
div.navbar-header a {
    font-size: 45px;
    padding: 0;
    padding-bottom: 10px;
    font-family: wr;
}

div.navbar-header a span {
    color: white;
    transition: 0.3s ease color;
}
div.navbar-header a:hover span.l {
    color: #F29900;
}
div.navbar-header a:hover span.k {
    color: #2C9A17;
}

.invited-by img {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    border-radius: 32px;
}
form.register-form {
    max-width: 600px;
    min-width: 304px;
}
small.text-muted {
    color: #BBB !important;
}
ul.errorlist {
    margin: 0;
    margin-left: -30px;
}

div.cover-image {
    position: relative;
    min-height: calc(100vh - 60px);
    overflow: hidden;
    color: white;
    background-size: 130%;
    background-position: -250px 0;
}

div.cover {
    position: absolute;
    top: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 58, 64, 0.87); /* #343A40DD */
}

div.cover > div.content {
    width: 70%;
}

@media (max-width: 1100px) {
    div.cover-image {
        background-size: 400%;
    }
    div.cover > div.content {
        width: 90%;
        margin: 15px auto;
    }
}