body {
  background: radial-gradient(circle, #0009, #000), url(../../midias/wallpaper.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed
}

.janela {
  width: calc(100% - 20px);
  height: calc(100% - 90px);
  min-width: 300px;
  max-width: 700px;
  top: 120px;
  margin: 40px auto 40px;
  padding: 42px 5px 0px 5px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 0 40px #0009;
  border: 1px solid #555;
  background: #222;
  color: #fff;
  overflow: hidden;
  font-family: monospace;
  transition: opacity 0.5s ease;
  backdrop-filter: blur(10px);
  font-size: 16px;
  animation: fadeInRight 0.5s ease-out forwards;
  text-align: center;
  user-select: none
}

p {
  text-align: justify;
}

.barra {
  background: linear-gradient(to bottom, #333, #222);
  box-shadow: 0 0 25px #0005;
  color: #bbb;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px;
  padding-left: 16px;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  font-family: monospace
}

bbb {
  position: relative;
  float: left;
  width: 12px;
  height: 12px;
  margin-right: 7px;
  margin-top: 4px;
  cursor: pointer;
  background: #FF5F57;
  border-radius: 50%
}

bbb::before,
bbb::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  cursor: pointer
}

bbb::before {
  background: #FECF1A;
  left: 20px
}

bbb::after {
  background: #46D755;
  left: 40px
}

.conteudo {
  background: none;
  color: #fffa;
  height: calc(100% + 20px);
  width: calc(100% + 25px);
  top: 0;
  left: 20%;
  right: 0;
  padding: 0px;
  overflow: scroll;
  scrollbar-width: thin;
  box-shadow: 0 0 45px #0005;
  scrollbar-color: #444 #363636;
  margin: -8px
}

h1 {
  margin-top: 30px;
  color: #fff;
  text-align: center;
  font-family: monospace
}

h4 {
  color: #fff7;
  text-align: center;
  font-family: monospace
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px
}

th,
td {
  padding: 20px 8px;
  text-align: left;
  font-family: monospace;
  border-bottom: 1px solid #fff;
  transition: background-color 0.3s ease;
}

th {
  background: #222;
  color: #fff
}

tr:nth-child(even) {
  background: #043066;
}

tr:nth-child(odd) {
  background: #0b4994;
}

tr {
  transition: background-color 0.3s ease;
  cursor: pointer;
  background: #0000;
}

th:nth-child(1),
td:nth-child(1) {
  width: 30%;
}

th:nth-child(2),
td:nth-child(2) {
  width: 30%;
}

th:nth-child(3),
td:nth-child(3) {
  width: 30%;
}

th:nth-child(4),
td:nth-child(4) {
  width: 10%;
}

tr:hover {
  background: #222;
  color: #fff;
}