@import url('https://fonts.googleapis.com/css2?family=Knewave&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  background-color: #f4ecdc;
  color: #000;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-style: normal;
  font-variant-numeric: lining-nums;
  font-weight: 400;
  margin: 0;
}

p {
  line-height: 1.75;
  margin-bottom: 1em;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  font-weight: 700;
}

a:hover {
  text-decoration: none;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px;
  text-align: center;
}

.header {
  margin-bottom: 30px;
}

@media screen and (min-width: 500px) {
  .header {
    margin-bottom: 50px;
  }
}

.brand {
  margin-bottom: 30px;
}

@media screen and (min-width: 500px) {
  .brand {
    margin-bottom: 30px;
  }
}

.title {
  font-weight: 900;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 20px;
  text-wrap: pretty;
}

@media screen and (min-width: 500px) {
  .title {
    font-size: 48px;
  }
}

.subtitle {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  text-wrap: pretty;
}

@media screen and (min-width: 500px) {
  .subtitle {
    font-size: 26px;
  }
}

.description {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 700px;
}

.form {
  margin: 0 auto;
  max-width: 600px;
}