div,
body {
  padding: 0;
  margin: 0;
  border: 0;
  background: #cc655b;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

div h2,
body h2 {
  text-align: center;
  color: #fff;
}

.header {
  background: #000;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

.header-logo {
  width: 30rem;
  margin: 3rem;
  max-width: 80%;
}

.content {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  background: #cc655b;
  padding: 3rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
}

.content table {
  padding: 0;
  border: 0;
  width: 700px;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0 1em;
}

.content table tr {
  background: #fff;
  padding: 0;
  border: 0;
  width: 100%;
}

.content table tr th,
.content table tr td {
  padding: 0.2rem;
  border: 0;
}

.content table tr th:nth-child(1),
.content table tr td:nth-child(1) {
  width: 2rem;
  text-align: center;
  background: #000;
  color: #ffffff;
}

.content table tr th:nth-child(2),
.content table tr td:nth-child(2) {
  font-weight: 600;
  padding: 5px 30px;
}

.content table tr th:nth-child(3),
.content table tr td:nth-child(3) {
  width: 5rem;
  text-align: center;
}

.content__button {
  display: block;
  background: #fff;
  color: #000;
  padding: 1rem 5rem;
  width: 15rem;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 15px;
  margin-top: -3rem;
}

.content__button:hover {
  background: #eeeeee;
}

.admin {
  height: 100vh;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  justify-content: space-around;
}

.admin h2,
.admin label {
  color: #ffffff;
}

.admin__button {
  display: block;
  background: #fff;
  color: #000;
  padding: 1rem 5rem;
  width: 15rem;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 15px;
  display: block;
  margin: auto;
}

.admin__button:hover {
  background: #eeeeee;
}

.admin-form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  justify-content: space-around;
}

.admin-form input,
.admin-form select {
  font-size: 1.7rem;
  margin: 1rem;
  padding: 0.5rem;
}

