@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  height: auto;
  width: 100vw;
  height: 100vh;
  background-color: #f0f7f4;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

div#container {
  height: 100%;
  overflow-y: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 20px 20px 1fr 20px 20px;
      grid-template-columns: 20px 20px 20px 1fr 20px 20px;
  -ms-grid-rows: 80px 100px auto 40px 100px;
      grid-template-rows: 80px 100px auto 40px 100px;
      grid-template-areas: "nav nav   nav   nav  nav nav" "header header header header header header" ".  . main     main . ." ".  . .     .    . ." "footer footer footer footer footer footer";
}

div#container > header {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: header;
  text-align: center;
}

div#container > header h1 {
  color: #2e3b43;
  margin-top: 25px;
}

div#container > nav {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: nav;
  background-color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}

div#container > nav .home {
  background-color: #5c5c5c;
  border: none;
  color: #f0f7f4;
  padding: 5px 26px;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 16px;
  margin: 5px;
}

div#container > nav details summary {
  color: white;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-right: 25px;
  margin-top: 25px;
}

div#container > nav details ul {
  z-index: 99999;
  position: absolute;
  top: 90px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  float: right;
  color: white;
  background-color: gray;
  list-style: none;
}

div#container > nav details ul > li {
  padding: 7px;
  padding-bottom: 0px;
}

div#container > nav details ul > li > a {
  border: none;
  color: #f0f7f4;
  padding: 5px 26px;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  margin: 5px;
}

div#container > nav details ul > li:visited {
  color: white;
}

div#container > nav details ul > li:hover {
  background-color: #3d464b;
}

div#container > nav details ul > li:active {
  background-color: white;
  color: black;
}

div#container > nav details summary::before {
  color: white;
  content: '☰';
}

div#container > nav details[open] summary::before {
  color: white;
  content: '☰';
}

div#container > main {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-area: main;
  margin-top: 100px;
}

div#container > main > div > img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

div#container > main > div > div {
  margin-top: 20px;
  margin-left: 15px;
}

div#container > main > div > div > h3 {
  text-align: center;
}

div#container > main > div > div > a {
  background-color: #5c5c5c;
  border: none;
  color: #f0f7f4;
  padding: 35px 16px;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 16px;
  margin-top: 15px;
  margin-left: 55px;
  margin-right: 55px;
}

div#container > main .indeed {
  margin-top: 165px;
  margin-bottom: 160px;
}

div#container > main .indeed > div {
  margin-top: 65px;
}

div#container > main .indeed > div > h3 {
  text-align: center;
  margin: 15px;
}

div#container > main .indeed > div > img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}

div#container > main .words {
  width: 60vw;
  margin: auto;
  background-color: #a3a3a3;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 16px;
  border-style: solid;
}

div#container > main .words > h3 {
  text-align: center;
  margin: 20px 0px;
}

div#container > main .words > p {
  margin: 20px 30px;
}

div#container > footer {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: footer;
  width: auto;
  background-color: #bdbaba;
  border-style: solid;
}

div#container > footer > h3 {
  text-align: center;
  margin: 10px 0px 15px 0px;
}

div#container > footer > h4 {
  text-align: center;
}
/*# sourceMappingURL=style.css.map */