@import url("https://fonts.googleapis.com/css2?family=Schoolbell&display=swap");

* {
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
}
body {
  text-align: center;
  gap: 20px;
  font-family: "Schoolbell", cursive;
  font-weight: 400;
  font-style: normal;
}

.linkContainer {
  display: flex;

  a {
    background-color: black;
    color: aliceblue;
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 2rem;
    margin-left: auto;
  }
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  #input {
    width: 30vw;
    border-radius: 10px;
    background-color: lightgray;
    min-width: 50px;
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
  }
  > button {
    border-radius: 10px;
    background-color: lightskyblue;
    color: white;
    font-family: "Schoolbell", cursive;
    font-weight: 400;
    font-size: 16px;
    padding: 0.7rem 2.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
  }
}

h3 {
  font-size: 48px;
}
