html {
  background-color: #111211;
  overflow-x: hidden;
  /* user-select: none; */
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}

body {
  margin: 0;
  color: #ccc;
}

header {
  font-size: 32px;
  padding: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header > :is(h1, h3) {
  font-weight: 100;
  color: inherit;
  text-align: center;
}

main {
  font-size: 20px;
}

section,
footer {
  max-width: 840px;
  margin: 64px auto;
  padding-inline: 64px;
}

footer {
  border-top: 2px solid;
  padding-top: 16px;
  margin: 64px auto 16px;
  display: flex;
  justify-content: space-between;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: initial;
  color: #575;
}

h1, h3 {
  font-size: 48px;
}

h4 {
  font-size: 28px;
}

img.divide {
  width: 100vw;
  height: 320px;
  object-fit: cover;
  user-select: none;
}

img.logo {
  width: 128px;
}

.col {
  columns: 400px 2;
}

article {
  break-inside: avoid;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  padding-left: 12px;
}

input, textarea {
  padding: 12px;
  font-size: 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-family: inherit;
  resize: none;
}

input[type=submit] {
  background-color: #575;
  color: white;
  width: 200px;
  align-self: end;
}