@import url("https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Hand&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Edu AU VIC WA NT Hand", system-ui;
}
::after,
::before {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  display: flex;
  min-height: 100vh;
  align-items: center;
  background-image: linear-gradient(109.6deg, rgba(228, 107, 232, 1) 11.2%, rgba(87, 27, 226, 1) 96.7%);
}

.voiceinator {
  padding: 2rem;
  width: 30rem;
  margin: 0 auto;
  border-radius: 1rem;
  position: relative;
  background: #fff;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}

h1 {
  width: calc(100% + 4rem);
  margin: -2rem 0 2rem -2rem;
  padding: 0.5rem;
  border-bottom: 5px solid #f3c010;
  text-align: center;
  background: #ffc600;
  font-size: 2rem;
  font-weight: 100;
  font-family: "Pacifico", cursive;
  text-shadow: 3px 3px 0 #f3c010;
}

.voiceinator input,
.voiceinator button,
.voiceinator select,
.voiceinator textarea {
  width: 100%;
  display: block;
  margin: 10px 0;
  padding: 10px;
  border: 0;
  outline: 0;
  font-size: 1rem;
  background: #f7f7f7;
}

textarea {
  height: 10rem;
  font-family: "Pacifico", cursive;
  border-radius: 10px;
}

select {
  height: 50px;
  padding: 0 20px;
  border: 0;
  outline: 0;
  cursor: pointer;
  appearance: none;
  border-radius: 25px;
  text-align: center;
}

option {
  color: green;
}

.voiceinator button {
  background: #ffc600;
  border: 0;
  width: 49%;
  float: left;
  margin-bottom: 0;
  font-size: 20px;
  border-bottom: 5px solid #f3c010;
  position: relative;
  cursor: pointer;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.buttons :active {
  border: none;
}
