@import url("https://fonts.googleapis.com/css2?family=Bakbak+One&family=Open+Sans:wght@300;500&family=Poppins:wght@200;300&display=swap");

textarea {
  resize: none;
  border-radius: 50px;
  background: #fff;
  font-family: "Open Sans", sans-serif;
  padding: 30px;
  font-size: 16px;
}

.textbox {
  display: flex;
  justify-content: center;
  margin: 40px 15px 15px;
}

body {
  background-color: #c45f5f;
  margin: 0%;
}

.buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 15px;
  margin: 15px auto;
}

button {
  max-width: fit-content;
  margin: 15px auto;
  font-family: Arial, Helvetica, sans-serif;
  height: 55px;
  width: 200px;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  transition: all 0.5s ease-in 0s;
  cursor: pointer;
  border: 2px solid rgb(51, 51, 51);
  color: rgb(51, 51, 51) !important;
  background-color: #fff;
}

button:hover {
  border-radius: 60px;
  color: rgb(255, 255, 255) !important;
  border-color: rgb(51, 51, 51);
  background: rgb(51, 51, 51);
}

@media only screen and (max-width: 650px) {
  .buttons {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #f5f5f5;
  background-color: black;
  padding: 10px 0px;
  font-size: min(2vw, 15px);
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
