
/*
    COLORS
*/

:root {
  --accent: rgb(107, 9, 9);
  --link-highlight: #222222;
  --accent-background: #F8F8F8;
}

/* 
    ELEMENTS
*/

html {
  scroll-behavior: smooth;
}

hr {
  width: 80px;
  height: 1px;
  border-width: 0px;
  color: var(--accent);
  background-color: var(--accent);
}

body {
  margin: 0px;
  font-size: 15px;
  line-height: 1.49;
  font-weight: 200;
  color: #666666;
  font-family: Barlow, -apple-system, BlinkMacSystemFont, sans-serif;
}

header {
  top: 0px;
  width: 100%;
  background-color: white;
  height: 65px;
  z-index: 100;
  position: fixed;
  border-bottom: solid 0.5px lightgray;
}

section {
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 80px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

h2, p {
    text-align: center;
}

h2 {
  font-size: 40px;
  font-weight: 500;
}

textarea {
  height: 200px;
  resize: none;
}

form {
  margin-top: 40px;
}

a {
  line-height: 44px;
  color: var(--accent);
  font-weight: 300;
  text-decoration: none;
}

a img {

  text-align: center;
  vertical-align: middle;
  height: 37px;
  margin-top: 12px;
}

footer {
  background-color: var(--accent-background);
  padding: 20px;
}

footer p {
  font-size: 12px;
}

footer a {
  font-size: 12px;
    display: block;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border: none;
    text-decoration: none;
}

label {
  width: 100px;
  margin-top: 3px;
  font-weight: 200;
}

a:hover, a:active {
  color: var(--link-highlight);
  text-decoration: none;
}

input:hover, input:active {
  text-decoration: underline;
}

/* Classes */

.navbar-content {
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inputfield {
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 10px;
  background-color: var(--accent-background);
  width: 100%;
  min-height: 32px;
  border-radius: 10px;
  text-decoration: none;
  border: solid #eee 1px;
}

.link {
  color: white;
  background: var(--accent);
  font-size: 20px;
  font-weight: 200;
  padding: 10;
  padding-left: 40;
  padding-right: 40;

  display: block;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;

  text-align: center;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsiveness */

/* Large */
@media (min-width: 800) {

  body {
    font-size: 17px;
  }

  h2 {
    font-size: 40px;
  }
}

/* Portable */
@media (max-width: 600px) {

  body {
    font-size: 27px;
  }

  h2 {
    font-size: 50px;
  }
}