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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}
html {
  scroll-behavior: smooth;
  background-color: #79c0b8;
}

:root {
  --hue-color: 173;

  /* HSL color mode */
  --first-color: hsl(var(--hue-color), 36%, 21%);
  --first-color-second: hsl(var(--hue-color), 69%, 61%);
  --first-color-alt: hsl(var(--hue-color), 40%, 47%);
  --first-color-lighter: hsl(var(--hue-color), 62%, 88%);
  --title-color: hsl(var(--hue-color), 36%, 21%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --body-color: hsl(var(--hue-color), 60%, 99%);
  --container-color: #fff;

  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  --font-medium: 500;
  --font-semi-bold: 700;

  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
}

a {
  color: var(--first-color);
  text-decoration: none;
}

a:hover {
  color: var(--first-color-lighter);
  text-decoration: none;
}

.logo {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  text-align: center;
}

.pagewrap {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-item {
  width: 100%;
  height: auto;
  flex: 1;
  padding: 10px;
  margin: var(--mb-1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.page-item h1 {
  font-size: 50px;
  font-weight: var(--font-semi-bold);
  color: var(--first-color-lighter);
}

.page-item h3 {
  font-size: 20px;
  font-weight: var(--font-semi-bold);
}

.page-item p {
  font-size: 20px;
  font-weight: var(--font-medium);
}

input {
  width: 90%;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
  height: 40px;
  padding-left: 10px;
  background-color: #79c0b8;
  color: var(--first-color-lighter);
  font-size: 20px;
  font-weight: var(--font-medium);
}

input[type="text"] {
  border: none;
  border-bottom: 2px solid #000;
  background-color: #79c0b8;
}

.btn-truck {
  width: auto;
  height: auto;
  background-color: var(--first-color);
  color: var(--first-color-lighter);
  padding: 10px 40px;
  border-radius: 7px;
  margin-top: var(--mb-1);
}

.btn-truck:hover {
  width: auto;
  height: auto;
  background-color: var(--first-color-lighter);
  color: var(--first-color);
  padding: 10px 40px;
  border-radius: 7px;
  margin-top: var(--mb-1);
  cursor: pointer;
}

.look {
  font-size: 30px;
  font-weight: var(--font-medium);
  cursor: pointer;
}

.head {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: var(--font-semi-bold);
  font-size: var(--normal-font-size);
  flex-direction: column;
}

.chip {
  display: inline-block;
  width: 300px;
  min-width: 200px;
  padding: 0 25px;
  height: auto;
  min-height: 50px;
  font-size: 16px;
  line-height: 20px;
  border-radius: 25px;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.chip img {
  float: left;
  margin: 0 10px 0 -25px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.fontg {
  font-size: 30px;
}

select {
  width: 70%;
  height: 50px;
  font-weight: var(--first-color);
  font-size: 20px;
  background-color: #538882;
  -webkit-appearance: none;
  appearance: none;
  color: #fff;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .pagewrap {
    flex-direction: column;
  }
}
