@import 'https://fonts.googleapis.com/css?family=Roboto+Mono:100';
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

html,
body {
  font-family: 'Roboto Mono', monospace;
  background: #212121;
  height: 100%;
  margin: 0;
}
* {
  box-sizing: border-box;
}
.bg-image {
  /* The image used */
  background-image: url("bg.png");
  
  /* Add the blur effect */
  filter: blur(8px);
  -webkit-filter: blur(8px);
  
  /* Full height */
  height: 100%; 
  
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  border: 3px solid #f1f1f1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 20px;
  text-align: center;
}
.container {
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.text {
  font-weight: 100;
  font-size: 28px;
  color: #fafafa;
}
.random {
  font-weight: 100;
  font-size: 30px;
  color: #fafafa;
}
.dud {
  color: #757575;
}
.topright {
  font-weight: bold;
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 2;
  text-align: center;
}
.topleft {
  font-weight: bold;
  position: absolute;
  top: 5%;
  left: 5%;
  z-index: 2;
  text-align: center;
}


.dropbtn {
  background-color: #2a2f3b;
  color: #9fa5b5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px #2a2f3b solid;
  border-radius: 0.5em;
  padding: 1em;
  font-size: 16px;
  transition: background 0.3s;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
	list-style: none;
	padding: 0.2em 0.5em;
	background: #323741;
	border: 1px #363a43 solid;
	box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
	border-radius: 0.5em;
	color: #9fa5b5;
	position: absolute;
	top: 3.5em;
	left: 50%;
	width: 150%;
	transform: translateX(-50%);
	display: none;
	transition: 0.2s;
	z-index: 1;
}

.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  color: #9fa5b5;
}

.dropdown-content a:hover {
	background-color: #2a2d35;
	border-radius: 0.5em;
}

.active {
	background-color: #2a2d35;
	border-radius: 0.5em;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #323741;
  border: 2px #26489a solid;
  box-shadow: 0 0 0.8em #26489a;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 20px;
}

td, th {
  text-align: left;
  padding: 10px 20px;
}

.tablecenter {
  text-align: center;
  padding: 10px 20px;
}

td a:visited, td a:link {
  color: white;
}
td a:hover {
  color: #0272A6;
}

.ico {
	color: white;
}




.box{
  width: 300px;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #191919;
  text-align: center;
}
.box h1{
  color: white;
  text-transform: uppercase;
  font-weight: 500;
}
input[type = "text"], input[type = "password"]{
  border:0;
  background: none;
  display: block;
  margin: 20px auto;
  text-align: center;
  border: 2px solid #2a2f3b;
  padding: 14px 10px;
  width: 200px;
  outline: none;
  color: white;
  border-radius: 24px;
  transition: 0.25s;
}
input[type = "text"]:focus, input[type = "password"]:focus{
  width: 280px;
  border: 2px #26489a solid;
  box-shadow: 0 0 0.8em #26489a;
}
input[type = "submit"], input[type = "button"]{
  border:0;
  background: none;
  margin: 20px auto;
  text-align: center;
  border: 2px solid #363a43;
  padding: 14px 40px;
  outline: none;
  color: #9fa5b5;
  border-radius: 24px;
  transition: 0.25s;
  cursor: pointer;
}
input[type = "submit"]:hover, input[type = "button"]:hover{
  background: #2a2d35;
}

button {
  background: none;
  border: 2px solid #363a43;
  border-radius: 24px;
  color: white;
  padding: 5px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
}

label {
	font-size: 20px;
}

legend {
	font-size: 25px;
}

.cisco-table {
  font-size: 1vw;
}