@import url("https://fonts.googleapis.com/css?family=Quicksand:300");
@import url("https://fonts.googleapis.com/css?family=Diplomata");
@import url("https://fonts.googleapis.com/css?family=Kodchasan");

/*css variables*/
:root {
  --primary: #ddd;
  --dark: #333;
  --light: #fff;
  --hlight: #d3d3d3;
  --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
}

html {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
}

body {
  background-image: image(src= "../img/oak_leaves.jpg");
  margin: 30px 50px;
  line-height: 1.4;
}

.btn {
  background: var(--dark);
  color: var(--light);
  padding: 0.6rem 1.3rem;
  text-decoration: none;
  border: 0;
  text-align: center;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-right: 20px;
}

img {
  max-width: 100%;
}

.wrapper {
  display: grid;
  grid-gap: 20px;
}

/*navigation*/
.main-nav ul {
  display: grid;
  grid-gap: 20px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.main-nav a {
  background: var(--primary);
  display: block;
  text-decoration: none;
  padding: 0.8rem;
  text-align: center;
  color: var(--dark);
  text-transform: uppercase;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}

.main-nav a:hover {
  background: var(--dark);
  color: var(--light);
}

/* top container*/

.top-container {
  display: grid;
  grid-gap: 20px;
  grid-template-areas:
    /*'top-box-a showcase showcase '*/ "top-box-b showcase showcase ";
}

/*showcase*/

.showcase {
  grid-area: showcase;
  min-height: 400px;
  background: url("./../_img/showcase.jpg");
  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  box-shadow: var(--shadow);
}

.hitler {
  grid-area: showcase;
  min-height: 400px;
  background: url("./../_img/ahdeer.jpg");
  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  box-shadow: var(--shadow);
}

.showcase .construction {
  width: 100%;
  height: 100%;
  background: url("./../img/Under_construction.jpg");
  background-size: cover;
  background-position: center;
  padding: 0;
}

.showcase h1 {
  padding-left: 10rem;
  font-size: 4rem;
  margin-bottom: 0;
  color: var(--light);
}

.showcase h2 {
  padding-left: 5rem;
  font-size: 2rem;
  margin-bottom: 0;
  color: var(--light);
}

.showcase p {
  padding-left: 10rem;
  font-size: 1.3rem;
  margin-top: 0;
  color: var(--light);
}

.hitler h1 {
  padding-left: 10rem;
  font-size: 4rem;
  margin-bottom: 0;
  color: var(--light);
}

.hitler h2 {
  padding-left: 5rem;
  font-size: 2rem;
  margin-bottom: 0;
  color: var(--light);
}

.hitler p {
  padding-left: 10rem;
  font-size: 1.3rem;
  margin-top: 0;
  color: var(--light);
}

/*top-box*/

.top-box {
  background: url("./../_img/construct.jpg");
  background-size: cover;
  background-position: center;

  display: grid;
  align-items: center;
  justify-items: center;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.top-box .price {
  font-size: 2.5rem;
}

.top-box-a {
  grid-area: top-box-a;
}

.top-box-b {
  grid-area: top-box-b;
}

.top-box .top-box-b .row-box {
  display: inline-block;
}

.button {
  padding: 0.6rem 1.3rem;
  text-align: center;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.button a:hover {
  background: var(--hlight);
  color: var(--dark);
}

.button:hover {
  background: var(--hlight);
  color: var(--dark);
}

.button .saga {
  text-align: left;
}

/*boxes*/

.boxes {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.box {
  background: var(--primary);
  text-align: center;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
}

/*info*/

.mythbox {
  background: var(--primary);
  box-shadow: var(--shadow);
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  padding: 3rem;
}

.inforight {
  background: var(--primary);
  box-shadow: var(--shadow);
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  padding: 3rem;
}

/*portfolio*/

.portfolio {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.portfolio img {
  width: 100%;
  box-shadow: var(--shadow);
}

.textbare {
  font-family: Kodchasan;
}

/*footer*/

footer {
  margin-top: 2rem;
  background: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 1rem;
}

/*media query*/

@media (max-width: 900px) {
  .top-container {
    grid-template-areas:
      "showcase "
      "top-box-b"
      "infoleft";
  }

  .showcase h1 {
    font-size: 2.5rem;
  }

  .main-nav ul {
    grid-template-columns: 1fr;
  }

  .info {
    grid-template-columns: 1fr;
  }

  .mythbox {
    grid-template-columns: 6fr;
  }

  .info .btn {
    display: block;
    text-align: center;
    margin: auto;
  }

  @media (max-width: 600px) {
    .top-container {
      grid-template-areas:
        "showcase"
        "top-box-a"
        "top-box-b";
    }

    .top-container h6 {
      padding-left: 1rem;
      font-size: 1rem;
      margin-bottom: 0;
      color: var(--light);
    }

    .btn {
      background: var(--dark);
      color: var(--light);
      padding: 0.6rem 1.3rem;
      text-decoration: none;
      border: 0;
      text-align: center;
      display: grid;
      grid-gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      margin-right: 40px;
    }
  }
}

.showcase .earlyhistory {
  width: 100%;
  height: 100%;
  background: url("../_img/early_history_of_germany.jpg");

  background-size: cover;
  background-position: center;
  padding: 0;
}

.info .text01 {
  font-family: "Quicksand", cursive;
  font-size: 22rem;
}

/* added for form traversy*/

input,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* Form */

form {
  margin: 0 0 2rem 0;
}

form > :last-child {
  margin-bottom: 0;
}

form > .fields {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -2rem 0 2rem -2rem;
  width: calc(100% + 4rem);
}

form > .fields > .field {
  -moz-flex-grow: 0;
  -webkit-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  padding: 2rem 0 0 2rem;
  width: calc(100% - 2rem);
}

form > .fields > .field > :last-child {
  margin-bottom: 0;
}

form > .fields > .field.half {
  width: calc(50% - 1rem);
}

form > .fields > .field.third {
  width: calc(100% / 3 - 0.6666666667rem);
}

form > .fields > .field.quarter {
  width: calc(25% - 0.5rem);
}

@media screen and (max-width: 480px) {
  form > .fields {
    margin: -1.5rem 0 2rem -1.5rem;
    width: calc(100% + 3rem);
  }

  form > .fields > .field {
    padding: 1.5rem 0 0 1.5rem;
    width: calc(100% - 1.5rem);
  }

  form > .fields > .field.half {
    width: calc(100% - 1.5rem);
  }

  form > .fields > .field.third {
    width: calc(100% - 1.5rem);
  }

  form > .fields > .field.quarter {
    width: calc(100% - 1.5rem);
  }
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0.325rem;
  border: solid 2px rgba(144, 144, 144, 0.25);
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1rem;
  text-decoration: none;
  width: 100%;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
input[type="tel"]:invalid,
input[type="search"]:invalid,
input[type="url"]:invalid,
select:invalid,
textarea:invalid {
  box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  border-color: #2ee4bb;
}

label {
  color: #000000;
  display: block;
  font-family: "Raleway", Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.175em;
  line-height: 1.75;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"] {
  height: 3rem;
}

select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(144, 144, 144, 0.25)' /%3E%3C/svg%3E");
  background-position: calc(100% - 1rem) center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  height: 3rem;
  padding-right: 3rem;
  text-overflow: ellipsis;
}

select option {
  background-color: #ffffff;
  color: #000000;
}

select:focus::-ms-value {
  background-color: transparent;
}

select::-ms-expand {
  display: none;
}

textarea {
  padding: 0.75rem 1rem;
}

input[type="checkbox"],
input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  float: left;
  margin-right: -2rem;
  opacity: 0;
  width: 1rem;
  z-index: -1;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  text-decoration: none;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.0375em;
  padding-left: 2.675rem;
  padding-right: 0.875rem;
  position: relative;
  text-transform: none;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-transform: none !important;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  border-radius: 0.325rem;
  border: solid 2px rgba(144, 144, 144, 0.25);
  content: "";
  display: inline-block;
  height: 1.8rem;
  left: 0;
  line-height: 1.725rem;
  position: absolute;
  text-align: center;
  top: -0.15rem;
  width: 1.8rem;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
  content: "\f00c";
  background-color: #49fcd4;
  border-color: #49fcd4;
  color: #ffffff;
}

input[type="checkbox"]:focus + label:before,
input[type="radio"]:focus + label:before {
  border-color: #49fcd4;
  box-shadow: 0 0 0 1px #49fcd4;
}

input[type="checkbox"] + label:before {
  border-radius: 0.325rem;
}

input[type="radio"] + label:before {
  border-radius: 100%;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.25) !important;
}

:-moz-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.25) !important;
}

::-moz-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.25) !important;
}

:-ms-input-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.25) !important;
}

@media screen and (max-width: 736px) {
  label {
    font-size: 0.675rem;
  }

  input[type="checkbox"] + label,
  input[type="radio"] + label {
    font-size: 1rem;
  }
}

@media screen and (max-width: 360px) {
  label {
    font-size: 0.675rem;
  }

  input[type="checkbox"] + label,
  input[type="radio"] + label {
    font-size: 1rem;
  }
}

.containmessage {
  margin-right: 5rem;
}

textarea {
  width: 700px;
  height: 100px;
  resize: none;
}

/* Actions */

ul.actions {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -1rem;
  padding-left: 0;
}

ul.actions li {
  padding: 0 0 0 1rem;
  vertical-align: middle;
}

ul.actions.special {
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 100%;
  margin-left: 0;
}

ul.actions.special li:first-child {
  padding-left: 0;
}

ul.actions.stacked {
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0;
}

ul.actions.stacked li {
  padding: 1.3rem 0 0 0;
}

ul.actions.stacked li:first-child {
  padding-top: 0;
}

ul.actions.fit {
  width: calc(100% + 1rem);
}

ul.actions.fit li {
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -moz-flex-shrink: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  width: 100%;
}

ul.actions.fit li > * {
  width: 100%;
}

ul.actions.fit.stacked {
  width: 100%;
}

@media screen and (max-width: 480px) {
  ul.actions:not(.fixed) {
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    width: 100% !important;
  }

  ul.actions:not(.fixed) li {
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
    padding: 1rem 0 0 0;
    text-align: center;
    width: 100%;
  }

  ul.actions:not(.fixed) li > * {
    width: 100%;
  }

  ul.actions:not(.fixed) li:first-child {
    padding-top: 0;
  }

  ul.actions:not(.fixed) li input[type="submit"],
  ul.actions:not(.fixed) li input[type="reset"],
  ul.actions:not(.fixed) li input[type="button"],
  ul.actions:not(.fixed) li button,
  ul.actions:not(.fixed) li .button {
    width: 100%;
  }

  ul.actions:not(.fixed) li input[type="submit"].icon:before,
  ul.actions:not(.fixed) li input[type="reset"].icon:before,
  ul.actions:not(.fixed) li input[type="button"].icon:before,
  ul.actions:not(.fixed) li button.icon:before,
  ul.actions:not(.fixed) li .button.icon:before {
    margin-left: -0.5rem;
  }
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
button.primary,
.button.primary {
  background: var(--dark);
  color: var(--light);
  padding: 0.6rem 1.3rem;
  text-decoration: none;
  border: 0;
  text-align: center;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-right: 20px;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
button.primary:hover,
.button.primary:hover {
  background-color: #d3d3d3;
}

input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
button.primary:active,
.button.primary:active {
  background-color: #d3d3d3;
}

.smallcaption {
  font-size: 0.8rem;
}

.creditbox {
  font-family: "Times New Roman", Times, serif;
  font-size: 0.8rem;
  background: rgb(168, 160, 160);
  box-shadow: var(--shadow);
  display: none;
  grid-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  padding: 3rem;
}

.trigger {
  color: red;
}

.hidden {
  display: none;
}

.creditbox2 {
  display: grid;
  font-family: "Times New Roman", Times, serif;
  font-size: 0.8rem;
  background: rgb(168, 160, 160);
  box-shadow: var(--shadow);

  grid-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  padding: 3rem;
}

.toc_list a {
  font-family: "Courier New", Courier, monospace;
  text-decoration: none;
}
.toc_list li a:link {
  color: rgb(36, 4, 73);
}

.toc_list li a:hover {
  color: rgb(219, 5, 5);
}

/* selected link */
.toc_list li a:active {
  color: blue;
}
.toc_list ul a:link {
  color: rgb(85, 6, 95);
}

/* visited link */
.toc_list ul a:visited {
  color: green;
}

/* mouse over link */
.toc_list ul a:hover {
  color: rgb(219, 101, 5);
}

/* selected link */
.toc_list ul a:active {
  color: blue;
}

.toc_title {
  font-size: 2rem;
}

.Ragnaroktop h1 {
  font-size: 10rem;
  display: top;
  padding: 1rem;
  padding-top: 0rem;
  align-self: center;
  vertical-align: top;
  margin-top: 0rem;
}

.Ragnaroktop p {
  padding-left: 10rem;
  font-size: 3.3rem;
  margin-top: 0;
  color: var(--light);
}

.snaptun figure {
  float: right;
  width: auto;
  text-align: center;
  font-style: italic;
  font-size: smaller;
  text-indent: 0;
  border: thin silver solid;
  margin: 0.5em;
  padding: 0.5em;
  padding-bottom: 0;
}

.mythbox blockquote {
  font-style: italic;
  font: 0.9em monospace;
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 40px;
  margin-right: 40px;
}

.showcase2 .odin {
  width: 100%;
  height: 100%;
  background: url("../_gods/img/Odin/showcase.jpg");

  background-size: cover;
  background-position: center;
  padding: 0;
}

.tripright {
  position: relative;
}

.photogallerylink {
  position: relative;
  border: #333 solid 3px;
  border-radius: 5px;
  background-color: #a3b1b4;
  box-shadow: #333;
}

.tripright {
  position: relative;
}

#end {
  position: relative;
  display: grid;
  height: auto;
  grid-template-columns: 1fr 2fr 1fr;
}

.showcase .raven {
  width: 100%;
  height: 100%;
  background: url("../_gods/img/Odin/showcase.jpg");

  background-size: cover;
  background-position: center;
  padding: 0;
}

.knots {
  background: url(../img/Backgrounds/norse_knots.jpg);
  background-repeat: repeat;
  padding: 20px;
  color: black;
  border: rgb(107, 105, 105) solid 3px;
  border-radius: 5px;
  background-color: #a3b1b4;
  box-shadow: var(--shadow);
  opacity: 0.8;
}

.knots2 {
  background: url(../img/Backgrounds/norse2.png);
  background-repeat: repeat;
  padding: 20px;
  color: black;
  border: rgb(107, 105, 105) solid 3px;
  border-radius: 5px;
  background-color: #a3b1b4;
  box-shadow: var(--shadow);
  opacity: 0.8;
}
.knotsimg {
  background: url(../img/Backgrounds/norse_knots.png);
  background-repeat: repeat;
  padding: 20px;
  color: black;
  border: rgb(107, 105, 105) solid 3px;
  border-radius: 5px;
  background-color: #a3b1b4;
  box-shadow: var(--shadow);
}
.showcase2 .thor {
  background: url("../_img/global/SS_Platanenmuster_Herbst.jpg");
  background-size: cover;
  background-position: center;
}
.showcase2 {
  grid-area: showcase;
  min-height: 400px;

  background-size: cover;
  background-position: center;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  box-shadow: var(--shadow);
}
.showcase2 h1 {
  padding-left: 10rem;
  font-size: 4rem;
  margin-bottom: 0;
  color: var(--light);
}

.showcase2 h2 {
  padding-left: 5rem;
  font-size: 2rem;
  margin-bottom: 0;
  color: var(--light);
}

.showcase2 p {
  padding-left: 10rem;
  font-size: 1.3rem;
  margin-top: 0;
  color: var(--light);
}
.serpent {
  background: url("../img/Jormungand/Runestone_U_308_at_Ekeby.jpg");
  background-position: cover;
  text-shadow: 1px 2px #0f0113;
  background-repeat: no-repeat;
  background-size: cover;
}

.decogreen a:link {
  text-decoration: none;
  color: rgb(121, 6, 25);
}

.decogreen a:visited {
  text-decoration: none;
  color: brown;
}

.decogreen a:hover {
  text-decoration: underline;
}

.decogreen a:active {
  text-decoration: underline;
}
.citing::before {
  content: open-quote;
}
.citing::after {
  content: close-quote;
}
.Citing {
  quotes: "“" "”" "‘" "’";
}
.citing {
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  text-indent: 5%;
  margin: 25px;
}
