@font-face {
  font-family: "figtree";
  src: url("../fonts/Figtree/Figtree-VariableFont_wght.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "figtree";
}

body {
  width: 100%;
  height: 100vh;
  background-image: url("../images/background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 20px 80px;
}

.logo {
  width: 91px;
  min-height: auto;
}

.title {
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
  margin-bottom: 60px;
}

h1 {
  font-size: 52px;
  font-weight: bold;
}

.title p {
  margin-top: 15px;
  font-size: 25px;
}

main {
  background-color: hsl(0, 0%, 100%, 0.14);
  margin: 0 auto;
  max-width: 700px;
  border-radius: 15px;
  padding: 22px;
  box-shadow: 0px 30px 100px 0px rgba(17, 23, 41, 0.15);
}

.input-text label,
.input-dropdown label,
.input-message label {
  display: block;
  font-size: 8pt;
}

::placeholder {
  color: black;
  font-size: 12px;
  font-weight: bolder;
}

.input-dropdown select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("../images/Expand_down.svg");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-input {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.input-text,
.input-dropdown {
  flex: 1;
}

.input-text input,
.input-dropdown select,
.input-message textarea {
  background-color: hsl(220, 33%, 98%);
  display: block;
  width: 100%;
  padding: 18px;
  border: 1px solid hsl(271, 40%, 52%);
  border-radius: 15px;
  margin-top: 3px;
  font-size: 12px;
  font-weight: bolder;
  box-sizing: border-box;
  resize: none;
}

.contact-sales {
  margin-top: 15px;
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 15px;
  border: none;
  background-color: hsl(220, 33%, 98%);
  color: hsl(271, 40%, 52%);
  font-size: 16px;
  font-weight: bolder;
  cursor: pointer;
}

.author-info {
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
  color: black;
}

.author-info a {
  text-decoration: none;
  color: black;
}

@media (max-width: 700px) {
  body {
    padding: 10px;
    background-size: cover;
    background-position: left top;
    background-attachment: fixed;
  }

  h1 {
    font-size: 38px;
  }

  .title p {
    font-size: 15px;
  }

  main {
    padding: 10px;
  }

  .form-input {
    flex-direction: column;
  }
}
