html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: flex;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: Signika;
  line-height: 1.5;
  margin: 0;
  padding: 0 10%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: #ede8f5;
  color: #333;
}

.navbar {
  display: flex;
  width: 100%;
  padding: 0 10px;
}

.navbar ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 20px;
  width: 100%;
}

.list-logo {
  margin-right: auto;
}

.navbar li:not(.list-logo) img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.navbar .list-logo img {
  width: 55px;
  height: auto;
  margin-top: 5px;
}

.navbar img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.navbar a:not(.list-logo a) {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
}

.navbar a:hover {
  opacity: 0.8;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 50px 0 50px 0;
  letter-spacing: 4px;
}

label {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

input,
textarea {
  font-size: 18px;
  font-weight: 400;
  font-family: Signika;
}

form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
  width: 100%;
}

input,
textarea {
  padding: 10px;
  margin-bottom: 50px;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
}

button {
  padding: 15px;
  background-color: #8697c4;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 105%;
}

button:hover {
  background-color: #7091e6;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 100;
  margin-top: 250px;
}

.footer-list {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.footer li:first-child {
  margin-right: auto;
}

.footer li:not(.list-logo) img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer ul {
  display: flex;
  width: 100%;
}

.footer a:hover {
  opacity: 0.8;
}

@media (max-width: 430px) {
  body {
    padding: 0 20px;
    max-width: 100%;
  }

  .navbar {
    flex-direction: row;
    align-items: center;
  }

  .navbar ul {
    align-items: center;
    gap: 10px;
  }

  form {
    width: 100%;
    padding-right: 20px;
  }

  footer {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-list {
    align-items: center;
    gap: 10px;
  }
}
