@import url("https://fonts.googleapis.com/css?family=Lato:400,700|Roboto&display=swap");
body {
  margin: 0;
  padding: 0;
}

.header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 7em;
  grid-gap: 1em;
}
.header__nav {
  height: 7em;
  grid-column: 1;
  display: flex;
  align-items: flex-end;
  margin-left: 2em;
  padding: -0.3em;
  border-bottom: solid 0.1em #cc0066;
}
.header__nav button {
  width: 6em;
  height: 7em;
  margin-left: 16px;
  background-color: inherit;
  border: none;
  font-family: "Roboto";
  font-size: 1.2em;
  padding-top: 1.6em;
}
.header__nav button:hover {
  border-bottom: solid 0.2em #cc0066;
  padding-bottom: 0;
  padding-top: 1.7em;
  margin-bottom: 0;
  color: #cc0066;
}
.header__nav button:focus {
  outline: none;
}
.header__user {
  grid-column: 2;
  font-family: "Roboto";
  font-size: 1.4em;
  color: gray;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 8em;
}

.section {
  width: 100%;
  height: 38em;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.section__about {
  grid-column: 1;
  margin-left: 4em;
  align-self: center;
}
.section__about p {
  font-family: "Lato";
  font-size: 48px;
  margin: 0;
  color: gray;
}
.section__about p strong {
  color: black;
}
.section__about p strong.quis {
  color: #cc0066;
}
.section__about button {
  width: 6em;
  margin-top: 1em;
  height: fit-content;
  background-color: #cc0066;
  border-radius: 8px;
  color: white;
  font-family: "Lato";
  font-size: 38px;
  padding: 8px 16px;
  font-weight: bold;
}
.section__about button:focus {
  outline: none;
}
.section__product {
  align-self: center;
}
.section__product img {
  width: 720px;
  height: 540px;
}

.footer {
  width: 100%;
  height: 3em;
  display: flex;
  justify-content: center;
}
.footer__text {
  font-family: "Lato";
  font-size: 16px;
  color: gray;
}

@media (max-width: 980px) {
  .header {
    display: inline;
  }
  .header__nav {
    display: none;
  }
  .header__user {
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 1em 0 1em 0.2em;
    padding-bottom: 1em;
    border-bottom: 2px solid #cc0066;
  }

  .section {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .section__about {
    margin: 1em 4em 1em 4em;
  }
  .section__product img {
    width: 100%;
    height: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
