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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
}

.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 450px;
  margin: auto;
  text-align: center;
  gap: 1px;
  flex-wrap: wrap;
}

.title {
  font-size: 34px;
}

.desc {
  font-size: 17px;
}
