/* --------------- Reset Start ---------------- */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------- Reset End ---------------- */

body {
  background: #b3c19e;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
}

.container {
  width: 65%;
  margin: 15px auto 30px;
  background: #fff;
}

header {
  width: 100%;
  padding: 1em 0;
  flex-direction: column;
  display: flex;
  align-items: center;
}

.logo {
  width: 100%;
}

img.logo {
  margin-bottom: 1em;
}

.mission {
  padding: 1em;
  flex-direction: column;
  display: flex;
  align-items: Left;
  font-size: 1.35rem;
}

main {
  margin: 0;
  padding: 0 2em;
  background: url(/images/btree.jpg) no-repeat top center;
}

.content {
  display: flex;
}

section {
  width: 90%;
  margin-right: 2em;
}

section > div {
  margin-top: 1em;
  padding: 15px;
  border: 3px solid #aaa;
  border-radius: 25px;
  box-shadow: 10px 5px 5px #ccc;
  background-color: #ffffff91;
}

section > div > h3 {
  font-size: 1.4rem;
}

section > div > p {
  font-size: 1.2rem;
}

footer {
  font-size: 11px;
  margin: 20px 20px 0 25px;
  padding: 20px 0;
  border-top: 1px solid #b8b7b2;
}

@media only screen and (max-width: 82em) {
  .container {
    width: 95%;
  }

  .logo-big {
    display: none;
  }

  .logo-small {
    display: block;
  }
}

@media only screen and (max-width: 57em) {
  .container {
    width: 100%;
    margin: 0;
  }

  header {
    margin: 0;
  }

  header > img {
    max-width: 100%;
  }

  .mission {
    text-align: center;
    padding: 0;
  }

  .mission > h2 {
    font-size: 6.5vw;
  }

  .mission > p {
    font-size: 4.5vw;
  }

  .content {
    flex-direction: column;
    align-items: center;
  }

  section {
    margin-right: 0;
  }

  section > div {
    text-align: center;
    padding-bottom: 1.5em;
  }

  section > div > h3 {
    padding-block: 0.5em;
  }

  section > div > p {
    margin-bottom: 0.5em;
  }

  li, ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

}