.logoutButton
{
  background-color:rgba(0,123,255,0.8);
  color: #fff;
  border: none;
  padding: 1px 5px;
  font-weight: normal;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.logoutButton:hover
{
 background-color:rgba(0,86,182,0.8);
}

.loginButton
{
  background-color:rgba(255,255,255,1.0);
  color: #000;
  border: none;
  padding: 1px 5px;
  font-weight: normal;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.loginButton:hover
{
 background-color:rgba(255,255,255,0.8);
}

.resetButton
{
  background-color:rgba(255,255,255,1.0);
  color:rgba(100,100,255,1.0);
  border: none;
  padding: 1px 5px;
  font-weight: normal;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.resetButton:hover
{
  color:rgba(0,0,255,1.0);
}

.UserVideoButton
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 26px;
  color: #fff;
  background-color: #fff;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background-color 0.3s;
  min-width:10%;
}

.UserVideoButton:hover
{
    background-color: #9f5;
}

.UserVideoButton i
{
    margin-right: 8px;
}

@media screen and (max-width:300px)
{
  .UserVideoButton { font-size:4vw; }
}

@media screen and (min-width:301px) and (max-width:800px)
{
  .UserVideoButton { font-size:4vw; }
}

@media screen and (min-width:801px) and (max-width:1200px)
{
  .UserVideoButton { font-size:1vw; }
}

@media screen and (min-width:1201px)
{
  .UserVideoButton { font-size:0.9vw; }
}
