/* ALGEMEEN */
:root {
  --mossgreen: #506935;
  --softgreen: #A1B080;
  --grey: #c6cfc1;
}

@font-face {
  font-family: corbel;
  src: url('corbel.ttf');
}

html {
  font-size: 100%;
}

body {
  font-size: 1rem;
  color: #000000;
  font-family: corbel;
  background-color: #ffffff;
  width: 100%;
  margin: auto;
}

.content {
  background-color: #ffffff;
  text-align: left;
  width: 500px;
  padding-bottom: 1.2rem;
  margin: auto;
  text-align: center;
}

@media (max-width: 550px) {
  .content {
    width: 440px;
  }
}

@media (max-width: 450px) {
  .content {
    width: 330px;
  }
}

.footer-text {
  color: var(--grey);
  text-align: center;
  margin-bottom: 1rem;
}



/* MENU */
.menubutton {
  margin: 2rem auto;
  display: block;
  color: var(--softgreen);
  font-weight: bold;
  font-size: 2rem;
  border: none;
  outline: none;
  background-color: #ffffff;
  width: 20rem;
}

.menubutton.responsive {
  background-color: var(--softgreen);
  color: #ffffff;
}

.dropdown {
  list-style-type: none;
  margin: -2rem auto 0rem auto;
  padding: 0;
  overflow: hidden;
  background-color: var(--softgreen);
  top: 0;
  width: 20rem;
}

.dropdown a {
  display: none;
}

.dropdown.responsive a {
  color: var(--mossgreen);
  text-align: center;
  padding: .2rem;
  text-decoration: none;
  display: block;
  font-size: 1.5rem;
  font-weight: normal;
}

.dropdown.responsive a:hover, .dropdown.responsive a:active {
  font-weight: bold;
}  



/* PAGINA'S */
img {
  display: block;
  margin: 2rem auto;
}

img.normal {
  width: 320px;
}

img.small {
  width: 160px;
}

img.circle { 
  width: 320px;
  border-radius: 160px;
}

img.spacer { 
  width: 64px;
  border-radius: 32px;
}

img.instagram {
  content: url("instagram_black.png");
  width: 80px;
}

img.instagram:hover {
  content: url("instagram_gradient.png");
}

.highlight {
  font-size: 1rem;
  color: var(--softgreen);
  font-weight: 100;
  margin: 0rem;
  display: block;
}

p {
  margin: auto;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--mossgreen);
  font-weight: bold;
  margin: 1rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--softgreen);
  font-weight: 100;
  margin: 0rem;
}

h4 {
  font-size: 1rem;
  color: #000000;
  font-weight: 100;
  margin: 1rem;
  font-style: italic;
}

form, label, input, textarea {
  margin: auto;
  display: block;
}

label {
  color: var(--softgreen);
}

input, textarea {
  font-size: 1rem;
  font-family: corbel;
  width: 80%;
  padding: .5rem;
  border: 1px solid var(--mossgreen);
  border-radius: .25rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
  resize: none;
  text-align: center;
}

textarea {
  height: 15rem;
}

input:focus, textarea:focus {
  outline:none;
}

input[type=submit] {
  font-size: 1.5rem;
  font-family: corbel;
  background-color: var(--softgreen);
  color: white;
  padding: .5rem;
  border: none;
  border-radius: .25rem;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: var(--mossgreen);
}