body {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
}

.wrapper {
    margin-top: 50px;
}

table {
    border-spacing: 40px;
    width: 100%;
}

.button {
    margin-top: 25px;
}
.button a {
    text-decoration: none;
}

.cssbuttons-io-button {
  background: black;
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0em;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: black;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: black;
  text-align: center;
  font-size: 14px;
  font-style: italic;
}


form {
    width: 100%;
    font-family: 'Times New Roman', Times, serif;
}

input {
    padding: 8px;
    margin-left: 0px;
    margin-bottom: 5px;
    width: 100%;
    border-radius: 0;
    border-style: solid;
    border-width: 1.5px;
    font-family: 'Times New Roman', Times, serif;
}

textarea {
    resize: none;
    padding: 5px;
    width: 100%;
    border-radius: 0;
    border-style: solid;
    border-width: 1.5px;
    font-family: 'Times New Roman', Times, serif;
}

.send-button {
    width: 22%;
    background-color: black;
    color: white;
    border-color: black;
    margin-top: 10px;
}
.send-button:hover {
    background-color: darkslategrey;
    cursor: pointer;
}