body {
  background-color: #181818;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
}

body > img {
  position: absolute;
  top: 20px;
  left: 20px;
}

table {
  width: 35%;
  border-spacing: 2px;
  overflow: hidden;
  border: 2px solid #181818;
  border-radius: 18.5px;
  background-color: #e8e8e8;
  table-layout: fixed;
}

td,
th {
  color: #e8e8e8;
  padding: 20px;
  text-align: center;
  background-color: #181818;
}

tr:first-child th:first-child,
tr:first-child td:first-child {
  border-top-left-radius: 15px;
}

tr:first-child th:last-child,
tr:first-child td:last-child {
  border-top-right-radius: 15px;
}

tfoot td {
  padding: 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

button {
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #181818;
  color: #e8e8e8;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

button:hover {
  background-color: #2b2b2b;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.copyright {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #858585;
  font-size: 12px;
  padding: 10px 0;
}
