*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.nav{
    background: #474747;
    color: white;
    height: 70px;
    font-family: sans-serif;

    display: flex;
    flex-wrap:wrap;
    align-items: center;
}

.nav-title{
    width: 30%;
    background: #6f03fc;
    text-align: center;
}

.nav-menu{
    width: 70%;
}

.nav-menu ul{
    display: flex;
    justify-content: flex-end;
}

.nav-menu ul li{
    padding: 10px 20px;
    color: #ccc;
    font-size: 20px;
    list-style-type: none;
    cursor: pointer;
}

.nav-menu ul li:hover{
    color: #fff;
    font-weight: bold;
}

/*style for responsive menu*/

@media screen and (max-width:1000px){
   .nav{
       height: auto;
   }
   .nav .nav-title{
       text-align: left;
       width: 100%;
   }

   .nav .nav-menu{
       width: 100%;
   }
   .nav .nav-menu ul{
       justify-content: space-around;
   }

   .nav .nav-menu ul li{
       width: 20%;
       padding: 10px 0px;
       text-align: center;
       font-size: 16px;
   }
}
.login-form {
    width: 300px;
    margin: 0 auto;
    font-family: Tahoma, Geneva, sans-serif;
    align-self: center;
}

  .login-form h1{
    color: white;
    text-transform: uppercase;
  }
  .login-form input[type = "text"],.login-form input[type = "password"],.login-form input[type = "email"]{
    border:0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #6f03fc;
    padding: 14px 10px;
    width: 200px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
  }
  .login-form input[type = "text"]:focus,.login-form input[type = "password"]:focus,.login-form input[type = "email"]:focus{
    width: 280px;
    border-color: #2ecc71;
  }
  .login-form input[type = "submit"]{
    border:0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #2ecc71;
    padding: 14px 40px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
    cursor: pointer;
  }
  .login-form input[type = "submit"]:hover{
    background: #2ecc71;
  }
  .login-form h4 {
    color: #6f03fc;
    text-align: center;
  }
  .title {
    color: grey;
    font-size: 18px;
    text-align: center;
  }
  .upload {
      color: black;
  }
  .loggedinuser {
      color: white;
      text-align: center;
  }
  .avatarcontaner {
      display: flex;
      flex-wrap: wrap;
  }
  .avatar {
      padding: 10px;
  }
  .avatarname {
      color: white;
  }
  .avatarbutton {
    border: none;
    background-color: inherit;
    padding: 14px 14px;
    cursor: pointer;
    display: inline-block;
    border-radius: 14px;
    background: #474747;
  }
  .avatarbutton:hover {
      background: gray;
  }
  .avatarimg {
      border-radius: 14px;
      transition: transform .25s ease;
      max-height: 200px;
      max-width: 200px;
      min-height: 200px;
      min-width: 200px;
  }
  .avatarbutton:hover .avatarimg {
    transform: scale(.7);
    opacity: 0.5;
  }
  .avatarbutton:active {
      background: darkgray;
  }
  .backbutton {
      background-color: #474747;
      border: none;
      color: white;
      padding: 10px 32px;
      border-radius: 14px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
  }
  .backbutton:active {
      background-color: darkgray;
  }
  .backbutton:hover {
      background-color: gray;
  }
  .api {
      color: white;
      text-align: center;

  }
  .resettoken {
      position: relative;
      display: flex;
      justify-content: center;
    background-color: #474747;
    border: none;
    color: white;
    padding: 10px 32px;
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
  }
  .resettoken:active {
    background-color: darkgray;
  }
  .resettoken:hover{
    background-color: gray;
  }
  @font-face {
    font-family: 'percolatorregular';
    src: url('/fonts/percolator-expert-webfont.woff2') format('woff2'),
         url('/fonts/percolator-expert-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
.jumbotron {
    padding-top: 40px;
    padding: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #24272a;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #24272a;
    border: 1px solid #24272a;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
body.container {
    background-image: url('/static/img/monochrome_background.jpg');
    color: darkblue;
    width: 80%;
    background-position: center;
    background-color: #24272a;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.container {
    width: 80%;
    padding-top: 30px;
    font-size: 110%;
}
.container-fluid {
    background: #6f03fc;
    color: white;
}
.descriptiontext {
    margin-top: 15px !important;
    margin-bottom: 5px !important;
}
.about {
    font-size: 170%;
}
