:root {
  --primary-color: #30c88b;
  --background-color: #000;
  --secondary-background-color: #333;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #1e1a22;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
}

ul {
  list-style: none;
  padding: 0;
}
#cpu-model{
  font-size: 14px;
  padding-bottom: 6px;
}

.content {
  opacity: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 60px);
  width: 350px;
  transition: opacity 0.4s ease;
  padding: 0 20px;
}

.content li {
  padding: 5px 10px;
  border-bottom: 1px #555 solid;
  background: var(--secondary-background-color);
}

.content.show {
  opacity: 1;
}

.hide {
  display: none;
}

nav {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: -5px;
  width: 350px;
}

nav ul {
  background-color: var(--secondary-background-color);
  display: flex;
  padding: 5px 0 0;
  margin: 0;
  list-style-type: none;
  height: 60px;
}

nav ul li {
  color: #f4f4f4;
  cursor: pointer;
  flex: 1;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  /* font-weight: bold; */
}

h1,
nav ul li:hover,
nav ul li.active {
  color: var(--primary-color);
}

nav ul li p {
  font-size: 10px;
  margin: 2px 0;
}

.progress-bar {
  background: var(--secondary-background-color);
  border-radius: 13px;
  height: 20px;
  width: 300px;
  padding: 3px;
}

.progress {
  content: '';
  display: block;
  background: var(--primary-color);
  height: 100%;
  border-radius: 13px;
}

.alert {
  text-align: center;
  padding: 5px;
  color: rgb(61, 228, 55);
  border: rgb(40, 212, 12) 1px solid;
}

.form-control {
  margin: 15px 0;
}

.form-control label {
  display: block;
  margin-bottom: 10px;
}

.form-control input,
.form-control select {
  width: 100%;
  padding: 4px;
}

.btn {
  cursor: pointer;
  display: inline-block;
  border: 0;
  background: var(--secondary-background-color);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 4px;
}
.btn:hover{
  background: var(--primary-color);
}

.btn:active,
.btn:focus {
  outline: 0;
}
