@font-face {
  font-family: "charland";
  /* src: url("../fonts/fjordone-regular.otf"); */
  src: url("../fonts/fjordone-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: "charland";
  margin: 0;
  background: #eee;
  height: auto;
}

h1 {
  font-weight: 400;
  font-size: 3.5rem;
  margin: 0;
  text-align: center;
}

h2 {
  font-weight: 400;
  font-size: 2rem;
  margin: 0;
}

h3 {
  font-weight: 400;
  font-size: 1.7rem;
  margin: 0;
}

p {
  font-weight: 400;
  font-size: 1.3rem;
  padding-left: 10px;
  padding-right: 10px;
}

img {
  display: block;
  max-width: 100%;
  /* width: 100%; */
}

li {
  font-weight: 400;
  font-size: 1.3rem;
  padding-right: 10px;
}

code {
  font-weight: 400;
  font-size: 1.1rem;
  padding-right: 10px;
}

hr {
  display: block;
  /* border: 1px #c00 solid; */
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-style: inset;
  border-width: 0.15rem;
  background: rgb(0, 140, 186);
  color: rgb(0, 140, 186);
  max-width: 60%;
}

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

.caption {
  font-weight: 400;
  font-size: 1.3rem;
  text-align: center;
}

main {
  max-width: 1000px;
  margin: auto;
  box-shadow: 30px 0px 40px rbga(0, 0, 0, 0.3),
             -30px 0px 40px rbga(0, 0, 0, 0.3);
}

.more {
  max-width: 1000px;
  margin: auto;
  box-shadow: 30px 0px 40px rbga(0, 0, 0, 0.3),
             -30px 0px 40px rbga(0, 0, 0, 0.3);
}

.more h1 {
  font-size: 2.2rem;
  /*
  color: #00f;
  border: 1px #c00 solid; */
}

.more h2 {
  font-size: 1.8rem;
  padding-left: 10px;
  padding-right: 10px;
  /* text-align: center; 
  color: #f00;
  border: 1px #c00 solid; */
}

.more h3 {
  font-size: 1.5rem;
  padding-left: 10px;
  padding-right: 10px;
  /* text-decoration: underline;
  text-align: center; 
  color: #f00;
  border: 1px #c00 solid;*/ 
}

#landing {
  background: #fff;
}

#landing-text {
  display: flex;
  flex: 0 1 50vw;
  height: 40vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-right: 1rem;
  padding-left: 1rem;
}

#landing-text h2 {
  color: #666;
}

#landing-image {
  /* background: url("../img/Victor_Maraudeurs.jpg"); */
  /* background: url("../img/Victor-Nomades.jpg"); */
  background: url("../img/Victor-Rouge-et-Or.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
  flex: 0 1 60vw;
  margin: 0;
}

header, footer {
  max-width: 1000px;
  display: flex;
  flex: 0 1 100vw;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background: rgb(0, 140, 186);
}

.menuchoice {
  /* border: 1px #c00 solid; */
  padding: 0.5rem 2rem;
  background: rgb(0, 140, 186);
  color: #eee;
  transition: background 250ms ease;
  transition: color 250ms ease;
  text-decoration: none;
}

.menuchoice:hover {
  background: rgb(0, 180, 226);
  color: #333;
}

.menulink {
  text-decoration: none;
  color: #eee;
}

.menulink:hover {
  color: rgb(0, 140, 186);
}

.btn {
  font-size: 1.2rem;
  padding: 0.5rem 2rem;
  border: 1px #ccc solid;
  display: inline-block;
  margin: 2rem 0 0;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  transition: background 250ms ease;
  transition: color 250ms ease;
}

.btn:hover {
  background: rgb(0, 140, 186);
  color: #eee;
}

#more {
  padding: 10px;
  text-align: center;
}

.linker {
  font-size: 1.3rem;
  padding: 0.5rem;
}

.morelink {
  text-decoration: none;
  color: #333;
}

.morelink:hover {
  color: rgb(0, 140, 186);
}

#stats {
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: center;
}

#stats ul {
  display: inline-block;
  text-align: left;
}

/* Screen Size 500px and Up */
@media (min-width: 500px) {
  #landing {
    display: flex;
    height: 100%;
  }

  #landing-text {
    height: 100vh;
    order: 1;
  }

  #landing-image {
    height: 100vh;
  }

  .linker {
    font-size: 1.5rem;
  }
}

