@import url('https://fonts.googleapis.com/css2?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: 'Roboto', sans-serif;
}

body {
  background: #45badd;
}

.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('./assets/robot.gif');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}

button {
  cursor: pointer;
  outline: none;
  width: 200px;
  height: 50px;
  font-size: 20px;
  color: white;
  background: #ff3482;
  border: none;
  border-radius: 7px;
  box-shadow: 2px 2px 20px 10px #45badd;
}

button:hover {
  filter: brightness(95%);
}
button:active {
  transform: scale(0.98);
}
button:disabled {
  cursor: default;
  background: grey;
  filter: brightness(55%);
}

textarea {
  padding: 5px;
  margin-top: 20px;
  min-width: 22.5rem;
  min-height: 7rem;
  border-radius: 7px;
  border: none;
  box-shadow: 2px 2px 20px 5px rgba(0, 0, 0, 0.2);
}

.optionalContainer {
  padding: 5px;
  margin: 10px;
  gap: 7px;
  color: white;
  background: #ff3482;
  box-shadow: 2px 2px 20px 5px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  border: none;
  display: flex;
}

/* Media Query: Tablet or Smaller */
@media screen and (max-width: 1000px) {
  .container {
    background-size: cover;
    background-position: center center;
  }
  button {
    box-shadow: 5px 5px 30px 10px rgba(0, 0, 0, 0.5);
  }
  textarea {
    margin-top: 360px;
  }
}
