* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  height: auto;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/pexels-luis-rodrigues-198790-1687575.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

div#container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 20px 20px;
      grid-template-columns: 20px 20px 20px;
  -ms-grid-rows: 10vh auto 100px;
      grid-template-rows: 10vh auto 100px;
      grid-template-areas: "header header header header header header" "main main    main     main    main main" "footer footer footer footer footer footer";
}

div#container > header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: header;
  display: block;
  margin: auto;
  width: 50vw;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#a18cd1), to(#fbc2eb));
  background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
  border-radius: 14px;
  border-style: solid;
}

div#container > header > h1 {
  margin: 20px;
  text-align: center;
}

div#container > main {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: main;
  height: 90vh;
}

div#container > main > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 180px;
}

div#container > main > div > a {
  background-image: linear-gradient(-20deg, #fc6076 0%, #ff9a44 100%);
  border: none;
  color: #f0f7f4;
  padding: 24px 36px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 16px;
  margin: 5px;
  margin: 0px 50px;
}

div#container > main .skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

div#container > main .skip:focus {
  position: static;
  width: auto;
  height: auto;
}

div#container > main > picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  margin-bottom: 100px;
}

div#container > main > section > h2 {
  text-align: center;
  color: white;
}

div#container > main > section > p {
  margin: 10px 300px;
  font-size: 1.2rem;
  color: white;
  text-align: center;
}

div#container > footer {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: footer;
  width: auto;
  background-image: linear-gradient(-20deg, #fc6076 0%, #ff9a44 100%);
  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 */