:root {
  --margin-main: 20px;

  --font-size-xs: 16px;
  --font-size-s: 20px;
  --font-size-m: 24px;
  --font-size-l: 32px;
  --font-size-xl: 64px;
}

footer {
  width: 100%;
  background-color: black;
  color: white;

  padding: 50px var(--margin-main) var(--margin-main);

}

.footerBlock {
  font-size: 14px;
  flex: 200px 1 1;
}

.footerHolder {
  gap: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


.centerLastText {
  margin-top: 50px;
  text-align: center;
    font-size: 14px;
}

.sendInput {
  background: transparent;
  color: white;
  outline: none;
  border: none;
  border-bottom: 1px solid white;
  width: calc(100% - 100px);
}

::placeholder {
  color: white;
}

.sendButton {
  border: 1px solid white;
  background-color: black;
  color: white;
  padding: 5px 20px;
  cursor: pointer;
}