@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500&family=Poppins:wght@400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #30475e;
  padding-bottom: 50px;
  text-align: center;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
}

header {
  margin: 15px;
  color: #f5f5f5;
  font-size: 2.5rem;
  font-weight: 600;
}

textarea {
  margin: 2.5rem auto;
  height: 20rem;
  width: min(27rem, 80vw);
  resize: none;
  border-radius: 0.5rem;
  padding: 2.5rem;
  font-family: "Open Sans", sans-serif;
  border: solid 3px #121212;
  outline: none;
}

textarea:focus {
  border-color: #f05454;
}

.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 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);
}

.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%;
}
