@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background-color: #FEFBF6;
  color: #070F2B;
  height: 110vh;
}

header nav {
  background-color: black;
  color: #FEFBF6;
}
header nav .logo {
  font-family: "Times New Roman", Times, serif;
  font-size: 36px;
  line-height: 80px;
  padding: 0 80px;
  font-weight: bold;
  margin-top: 10%;
  transition: 0.3s;
}
header nav ul {
  float: right;
  margin-right: 80px;
}
header nav ul li {
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  display: inline-block;
  line-height: 80px;
  margin: 0 20px;
}
header nav ul li a {
  border-width: 2px;
  border-color: #070F2B;
  border-style: solid;
  padding: 10px 18px;
  border-radius: 12%;
}

main {
  color: #070F2B;
  max-width: 800px;
  margin: auto;
  margin-top: 35px;
  display: flex;
  flex-direction: column;
}
main h1 {
  font-size: 42px;
  font-family: monospace;
  font-weight: 800;
  letter-spacing: 2px;
}
main form label {
  font-size: 21px;
}
main form .largos {
  width: 50vw;
  background-color: #FEFBF6;
  border-radius: 5px;
  border-width: 2px;
  border-color: #070F2B;
}
main form .button_submit {
  padding: 5px 50px;
  border-width: 2px;
  border-style: solid;
  border-color: #070F2B;
  background-color: #070F2B;
  color: #FEFBF6;
  border-radius: 10px;
  margin-top: 5px;
  font-weight: 700;
  transition: 0.2s;
}

footer {
  text-align: justify;
  background-color: rgba(148, 177, 255, 0.61);
  padding-top: 10px;
  height: 20vh;
  margin-top: 255px;
}
footer .pessoa {
  display: inline-block;
  margin-right: 26%;
  margin-left: 21px;
}
footer .pessoa h4 {
  font-weight: bold;
}
footer .pessoa p {
  display: inline-block;
}
footer .pessoa img {
  width: 30px;
}

#especial {
  margin-top: 50px;
  background-color: rgba(255, 255, 255, 0.24);
  text-align: center;
  font-style: italic;
}

.nav_list li:hover {
  transform: translateY(-5px);
}
.nav_list li:hover a {
  color: #FEFBF6;
  background-color: #070F2B;
}

.button_submit:hover {
  background-color: #FEFBF6;
  color: #070F2B;
}

.logo:hover {
  color: rgba(7, 15, 43, 0.7803921569);
  font-size: 38px;
}/*# sourceMappingURL=feedback.css.map */