body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-weight: 100;
  color: white;
}

p {
  font: 15px Arial, sans-serif;
  text-align: center;
  font-weight: 100;
}

div {
  text-align: center;
}

.button {
  background-color: black;
  color: white;
  border: 2px solid white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
  transition: 1s;
}

.button:hover {
  background-color: white;
  color: black;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

body {
  background: #111;
}

html,
body {
  margin: 0;
  height: 100%;
}

.w-full {
  width: 100%;
}

.p-2 {
  padding: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.border-solid {
  border-style: solid;
}

.border-2 {
  border-width: 2px;
}

.border-black {
  border-color: #000;
}

.w-12 {
  width: 3rem;
}

.bg-gray-900 {
  background-color: #111;
}

.w-48 {
  width: 12rem;
}

.border-white {
  border-color: #fff;
}

.text-white {
  color: #fff;
}
