body{
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
   
}

.user-interface{
    position: fixed;
    margin-left: 10px;
}

#login-p{
    cursor: pointer;
}

.logout{
    display: none;
    
}

#logout{
    cursor: pointer;
    text-decoration: underline;
}

#register-new{
    cursor: pointer;
}

#register-new i{
    font-size: 90%;
    color: grey;
}

.all-users{
    opacity: 0;
    background-color: #585858;
    position: relative;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-family: 'Raleway', sans-serif;
    filter:drop-shadow(8px 8px 10px gray);
    transition: .3s;
    cursor: auto;   
}

.all-users p{
    cursor: default;
}






/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    transform: translate(-50%, -50%);
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
    font-family: 'Roboto', sans-serif;
  }
  
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  #snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  
  /* Animations to fade the snackbar in and out */
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }

  

.container{
    padding-left: 20%;
    padding-right: 20%;
}



.login{
    display: none;
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background-color:#585858;
    padding: 50px;
    border-radius: 10px;
    filter:drop-shadow(8px 8px 10px gray);
    
   
}

.login p {
    font-size: 75%;
    color: white;
    text-align: center;
    margin-top: 15px;
    margin-bottom: -15px;
}

.login span{
    text-decoration: underline;
    cursor: pointer;
}

.login i{
    color: white;
    position: absolute;
    right: 25px;
    top: 25px;
    cursor: pointer;
    font-size: 110%;
}

.login h2{
    text-align: center;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 200%;
}

.login input{
    display: block;
    margin-top: 25px;
    text-align: center;
    border: none;
    border-bottom: 1px solid white;
    background-color: transparent;
    font-size: 150%;
    padding: 10px 0px;
    color: white;
    font-family: 'Roboto';
    font-weight: 300;
    
}

input:focus{
    outline: none;
}

.login button {
    margin-top: 50px;
    background-color: transparent;
    padding: 15px 40px;
    text-align: center;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 30;
    cursor: pointer;
}

button:focus{
    outline: none;
}

.main{
    
}

header{
    
    background-color: black;
    height: 150px;
    width: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    top: 120;
    left: 50%;
  
}

header h1{
    text-align: center;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 300%;
    padding-top: 25px;
    
  
}

.nav{
    color: white;
    text-align: center;
    display: block;
    margin-top: -10px;
    
    
}

.nav label{
    font-family: 'Oswald', sans-serif;
    font-size: 150%;
    margin-left: 25px;
    margin-right: 25px;
    cursor: pointer;
   

}

.rate{
    position: relative;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 220;
}

.rate h1{
    text-align: center;
    font-size: 250%;
    font-family: 'Raleway', sans-serif;
}

.img{
    overflow: hidden;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 100;
}

.img img{
 
  height: 100%;
  width: auto;
  size: cover;
}

.stars{
   text-align: center;
   margin-top: 25px;
   font-size: 200%;
   
   
}

.stars i{
    cursor: pointer;
    transition: .1s;
}

#sw-erg{
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 400%;
    font-weight: 300;
    margin-top: 100px;
}